我想从php文件中复制本地内容并将其复制到另一个文件,然后再复制php并使特定内容替换为php文件。 我做了以下事情:
chmod ('../archivo.php',0777);
$archivo= fopen("../archivo.php" , "r");
$get=file_get_contents($archivo);
$nuevoarchivo = fopen('../new-archivo.php', "w+");
fwrite($nuevoarchivo,$get);
fclose($nuevoarchivo);
但是不要复制任何东西我怎么能? 非常感谢你,拥抱。
答案 0 :(得分:1)
请勿混用file_get_contents
和fopen
。
// Read file content
$file_content = file_get_contents('../archivo.php');
// do the replacements, modifications, etc. on $file_content
// This is just an example
$file_content = str_replace('old_title', 'new_title', $file_content);
// write the content to a new file
file_put_contents('../new-archivo.php', $file_content);
您是否可以更具体地了解您想要替换的内容?