register_shutdown_function and sleep : register_shutdown_function « Utility Function « PHP
- PHP
- Utility Function
- register_shutdown_function
register_shutdown_function and sleep
<?
function say_goodbye( ) {
print "Goodbye!\n";
}
register_shutdown_function("say_goodbye");
set_time_limit(1);
print "Sleeping...\n";
sleep(2);
print "Done!\n";
?>
Related examples in the same category