function shutdown()
{
// code for last operations before the script is complete
$error = error_get_last();
if ($error['type'] === E_ERROR)
{
echo "fatal error<br />";
}
echo 'Script on shutdown executed<br />';
}
register_shutdown_function('shutdown');
echo "Blade Runner<br />"
/*
run:
Blade Runner
Script on shutdown executed
*/