ホームページ >バックエンド開発 >PHPチュートリアル >仮想ホスト上に静的ページを定期的に自動生成する方法

仮想ホスト上に静的ページを定期的に自動生成する方法

WBOY
WBOYオリジナル
2016-07-25 09:05:511032ブラウズ
  1. $nowtime=time();

  2. $pastsec = $nowtime – $_GET["t"];

  3. if($ pastsec<60)

  4. {
  5. exit; //1分ごとに更新、時間は自分で調整可能
  6. }

  7. ob_start() //バッファをオープン

  8. include("index. php") ;
  9. $content = ob_get_contents(); //バッファの内容を取得します
  10. $content .= “n