exit 13年11月9日 tenman 未分類 <?php function shutdown(){ // これがシャットダウン関数で、 // スクリプトの処理が完了する前に // ここで何らかの操作をすることができます echo '<h2>Script executed with success</h2>', PHP_EOL; } register_shutdown_function('shutdown'); exit( '<h1>hello world</h1>' ); ?>