时间:2021-07-01 10:21:17 帮助过:15人阅读
下面的代码不使用php内置的copy函数,直接通过文件读取写入的操作方式复制文件
<?php function copyfiles($file1,$file2){ $contentx =@file_get_contents($file1); $openedfile = fopen($file2, "w"); fwrite($openedfile, $contentx); fclose($openedfile); if ($contentx === FALSE) { $status=false; }else $status=true; return $status; } ?>
希望本文所述对大家的php程序设计有所帮助。