-
- $con = array(array("newtitle","newcontent"),array("newtitle2","newcontent2"));
- foreach($con as $id=>$ val)
- {
- $title = $val[0];
- $content = $val[1];
- $path = $id.'.htm';
- $fp = fopen("jia.htm", "r "); //ファイルを読み取り専用モードで開きます
- $str = fread($fp, filesize("jia.htm")); //ファイルを読み取ります
- $str = str_replace("{title}", $ title, $str); //文字列の内容を置換します
- $str = str_replace("{content}", $content, $str);
- fclose($fp); // ファイルを閉じます
-
- $fpw = fopen ($path, "w"); // 書き込み用にファイルを開きます
- fwrite($fpw, $str); // $str をファイルに書き込みます
- fclose($fpw);
- echo "生成に成功しました!" ;
- }
- ?>
コードをコピー
|