-1

可能重复:
将文件从一个目录复制到另一个目录

我想从 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);

但是不要复制任何东西我怎么能?非常感谢并拥抱。

4

1 回答 1

1

不要混用file_get_contentsfopen

// 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);

另外,您能否更具体地说明要替换的内容?

于 2012-11-18T13:00:46.543 回答