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

また、交換したいものについてより具体的に教えていただけますか?

于 2012-11-18T13:00:46.543 に答える