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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。