mirror of
https://github.com/php/php-src.git
synced 2024-11-25 10:54:15 +08:00
20 lines
236 B
Plaintext
20 lines
236 B
Plaintext
|
--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
|
||
|
|