-
- ob_start();#サーバーキャッシュを有効にする
- include_once 'Index.php';
- $ctx=ob_get_contents();#キャッシュを取得する
- ob_end_clean();#キャッシュをクリアする
- $fh=fopen ("index.html","w+");
- fwrite($fh,$ctx);#HTML を書き込み、html を生成
- fclose($fh);
- ?>
コードをコピー
方法 2 : php静的ファイル生成クラス
-
- class CreateHtml
- {
- function mkdir( $prefix= 'article' )
- {
- $y = date('Y');
- $m = date('m');
- $d = date('d');
- $p=DIRECTORY_SEPARATOR;
- $filePath='article'.$p.$y.$p.$m.$p.$d;
- $a=explode($ p,$filePath);
- foreach ( $a as $dir)
- {
- $path.=$dir.$p;
- if(!is_dir($path))
- {
- //echo 'そのようなディレクトリはありません'。 $path;
- mkdir($path,0755);
- }
- }
- return $filePath.$p;
- }
- function start()
- {
- ob_start();
- }
- function end()
- {
- $info = ob_get_contents();
- $fileId = '12345';
- $postfix = '.html';
- $path = $this->mkdir($prefix= 'article');
- $fileName = time().' _'.$fileId.$postfix;
- $file=fopen($path.$fileName,'w+');
- fwrite($file,$info);
- fclose($file);
- ob_end_flush();
- }
- }
- ?>
- $s=new CreateHtml();
- $s->start();
- ?>
- asdfasdfasdfasdfasdfasdfasdfasdfasdf
df
- >
|