PHP ファイル内の文字を置換する方法
使用例
1 2 3 4 5 6 7 8 9 10 11 12 | //ファイルパス $rdfile = './test.html' ; $val = "目次" ; //ファイルの内容を全て文字列に読み込む $str = file_get_contents ( $rdfile ); //検索文字列に一致したすべての文字列を置換する $str = str_replace ( "{mokuji}" , $val , $str ); //文字列をファイルに書き込む file_put_contents ( $rdfile , $str ); |
$str内にある文字列{mokuji}をstr_replace関数により"目次"に置換します。
file_put_contents関数で編集した内容をtest.html内に戻します。
使用関数
file_get_contentshttp://php.net/manual/ja/function.file-get-contents.php
str_replace
http://php.net/manual/ja/function.str-replace.php
file_put_contents
http://php.net/manual/ja/function.file-put-contents.php
簡単な置換であれば数行でできるので便利ですね。
コメント
コメントを投稿