文件系统函数库 copy (PHP3 , PHP4) copy --- 复制文件 语法 : int copy (string source, string dest) 说明 : 复制文件,成功则传回true,否则传回false。 Example : <?php if (!copy($file, $file.'.bak')) { print ("failed to copy $file...<br>\n"); } ?> 参考 : rename( ) 上一页 首页 下一页
文件系统函数库
copy
(PHP3 , PHP4)
copy --- 复制文件
语法 : int copy (string source, string dest)
int copy (string source, string dest)
int copy
说明 :
复制文件,成功则传回true,否则传回false。
Example :
<?php
if (!copy($file, $file.'.bak')) {
print ("failed to copy $file...<br>\n");
}
?>
参考 : rename( )