copy() 函數複製文件。將創建源文件到目標文件的副本。如果目標文件已經存在,它會被覆蓋。
用法
copy(source_file, dest_file)
參數
source_file −設置要複製的文件
dest_file −設置要複製到的文件
返回
copy() 函數返回。
- TRUE,成功
- FALSE,失敗時
示例
<?php
echo copy("D:/myfiles/sourcefile.dat","D:/myfiles/destfile.dat");
?>
輸出
true
現在讓我們看另一個例子。
示例
<?php
$file = '/usr/home/guest/example.txt';
$newfile = '/usr/home/guest/example.txt.bak';
if (!copy($file, $newfile)) {
echo "failed to copy $file...\n";
} else {
echo "copied $file into $newfile\n";
}
?>
輸出
failed to copy /usr/home/guest/example.txt...
相關用法
- PHP copy( )用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP compact()用法及代碼示例
- PHP count_chars()用法及代碼示例
- PHP cosh()用法及代碼示例
- PHP cosh( )用法及代碼示例
- PHP cos()用法及代碼示例
- PHP convert_uudecode()用法及代碼示例
- PHP collator_sort_with_sort_keys()用法及代碼示例
- PHP collator_sort()用法及代碼示例
- PHP count()用法及代碼示例
- PHP convert_cyr_string()用法及代碼示例
- PHP constant()用法及代碼示例
- PHP collator_compare()用法及代碼示例
- PHP collator_asort()用法及代碼示例
- PHP convert_uuencode()用法及代碼示例
- PHP connection_status()用法及代碼示例
- PHP crypt(), password_hash()用法及代碼示例
- PHP ctype_xdigit()用法及代碼示例
注:本文由純淨天空篩選整理自Samual Sam大神的英文原創作品 copy() function in PHP。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。