时间:2021-07-01 10:21:17 帮助过:27人阅读
$source_file = "d:\\1.less";$target_file = "d:\\2.less";$t_fp = fopen($target_file, "w"); //以w打开,就是覆盖写。如果2.less不存在会创建文件。但是如果目录不存在的话,不会创建目录if(!$t_fp) return false;$content = readfile($source_file);if(!$content) return false;$flag = fwrite($t_fp, $content);if($flag === false) echo "不能写入文件";fclose($t_fp);
file_get_contents
file_put_contents
file_put_contents('a/2.less', file_get_contents('a/1.less'));
file_put_contents('b.txt',file_get_contents('a.txt'));
file_get_contents