-
- header(Content-type:text/html;charset=utf-8);
- if(!function_exists(file_get_contents)){ //システムに file_get_contents( ) function
- function file_get_contents($file){ //file_get_contents() 関数を自分で書きます
- $fp = fopen($file,r);
- $content = fread($fp,filesize($file));
- fclose($ fp);
- return $content;
- }
- }
- $tmp_file = template.html; //テンプレートファイル
- $content = file_get_contents($tmp_file); //
- $title = title; //テンプレート変数 title に置き換えられる値
- $text = text; //テンプレート変数 text に置き換えられる値
- $content = str_replace(<{title} >,$title,$content); / / テンプレート変数 title を置き換えます
- $content = str_replace(<{text}>,$text,$content); // テンプレート変数 text を置き換えます
- // echo $content; // 置き換えられたテンプレート ファイルの内容を表示します
- MakeHtml(news.html,$content);// 生成された静的ファイルの内容を news.html ファイルに書き込みます
- echo ファイルを表示< ;/a>;
- function MakeHtml($file,$content){
- $fp = fopen($file,w);
- fwrite($fp,$content) ;
- fclose($fp);
- }
- ?>
-
http://www.bkjia.com/PHPjc/486247.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/486247.html技術記事 ?php header(Content-type:text/html;charset=utf-8); if(!function_exists(file_get_contents)){ //システムに file_get_contents() 関数がない場合 function file_get_contents($file){ //自分で書いてください..