2010-09-01 257 views

回答

6

您可以使用

  • copy - 複製文件從手動

例子:

$file = 'example.txt'; 
$newfile = 'example.txt.bak'; 

if (!copy($file, $newfile)) { 
    echo "failed to copy $file...\n"; 
} 
5

使用rename()拷貝一個文件到另一個目錄。

rename ("/var/www/files/file.txt", "/var/www/sites/file.txt"); 
+0

它工作正常。但它被從源刪除我希望它在源中也 – Warrior 2010-09-01 09:33:29

+0

@THOmas你要*移動它在問題標題中,並*複製*在問題體內...到複製它,使用['copy()'](http://www.php.net/copy) – 2010-09-01 09:38:22

3
rename('path/to/file/file.ext', 'path2/to2/file2/file.ext'); 
相關問題