exit

<?php

function shutdown(){
 // これがシャットダウン関数で、
 // スクリプトの処理が完了する前に
 // ここで何らかの操作をすることができます

 echo '<h2>Script executed with success</h2>', PHP_EOL;
}

register_shutdown_function('shutdown');
exit( '<h1>hello world</h1>' );
?>

[emulsion_relate_posts]