1

PHPファイルを自動編集できるスクリプトを作りたいです。たとえば、PHP ファイルabc.phpには、このスクリプトがあります。

<?php
/* 
Data : 'Valid Data'
Method : 'Yes'
*/
?>

そして、別のページdata.phpで$_GETまたは$_POSTを介してページにデータを取得すると、abc.phpファイルが new Dataで編集されます。abc.phpの古い値を置き換える IDは、単一のコロン(Data : 'Valid Data')です。

私はすでにhttp://www.hotscripts.com/listing/simple-php-file-editor/を試しましたが、私の状況ではそれを使用する方法がありません。

4

1 に答える 1

1
//Read the text of abc.php into an array, one line per entry
$lines = file('abc.php');

//Replace the third line with the new text, including your new data
$lines[2] = "Data : '" . $some_data . "'\n";

//Write the new lines into abc.php
file_put_contents('abc.php', implode($lines));
于 2012-04-29T04:46:10.843 に答える