Changeset 14583 for branches/dev
- Timestamp:
- 2007/06/11 19:18:04 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/dev/data/class/SC_UploadFile.php
r14518 r14583 356 356 * @param string $dst_path ¥³¥Ô¡¼Àè¥Õ¥¡¥¤¥ë¥Ñ¥¹(ÁêÂХѥ¹) 357 357 * @param string $src_path ¥³¥Ô¡¼¸µ¥Õ¥¡¥¤¥ë¥Ñ¥¹(ÀäÂХѥ¹) 358 * @param boolean $del_flag °Üư¥Õ¥¡¥¤¥ë¤òºï½ü¤¹¤ë¥Õ¥é¥° 358 359 * @return void 359 360 */ 360 function ftpMoveFile($dst_path, $src_path ) {361 function ftpMoveFile($dst_path, $src_path, $del_flag = false) { 361 362 global $arrWEB_SERVERS; 362 363 … … 366 367 } 367 368 // °Üư¸å¤Ï¥Õ¥¡¥¤¥ë¤òºï½ü 368 @unlink($src_path); 369 if($del_flag) { 370 @unlink($src_path); 371 } 369 372 } 370 373
Note: See TracChangeset
for help on using the changeset viewer.