mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
18 lines
237 B
PHP
18 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
|