summaryrefslogtreecommitdiff
path: root/tests/func/005.phpt
blob: c4215feb4988e1bfcc3113564bdef4de4136ebd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--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