php修改檔案內容的方法:先透過「file_get_contents」函數讀出資料;然後使用「str_replace」函數修改檔案內容;最後使用「file_put_contents」函數將修改後的內容寫入檔案即可。
推薦:《PHP教學》
php修改php檔案內容:
分三步驟:讀取、修改、寫入。
實作過程:
1、假設檔案名稱1.php,透過file_get_contents()函數讀出數據,實作程式碼效果為$content = file_get_contents('1.php');
2、假設1.php檔案的內容為27875543db03485e80ac29d47d612ae0,現在要把變數$op的值換成hello baidu,實作程式碼為:$ content = str_replace('hello world','hello baidu',$content);
3、將變數$content 寫入1.php文件,實作方式為:file_put_contents('1.php',$ content);
具體實例程式碼如下:
<?php $content = file_get_contents('1.php'); $content = str_replace('hello world','hello baidu',$content); file_put_contents('1.php',$content); ?>
最終1.php檔案內容為:$op = 'hello baidu';
以上是php如何修改文件內容的詳細內容。更多資訊請關注PHP中文網其他相關文章!