mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
19 lines
237 B
PHP
19 lines
237 B
PHP
--TEST--
|
|
Testing register_shutdown_function()
|
|
--FILE--
|
|
<?php
|
|
|
|
function foo()
|
|
{
|
|
print "foo";
|
|
}
|
|
|
|
register_shutdown_function("foo");
|
|
|
|
print "foo() will be called on shutdown...\n";
|
|
|
|
?>
|
|
--EXPECT--
|
|
foo() will be called on shutdown...
|
|
foo
|