summaryrefslogtreecommitdiff
path: root/tests/func/005.phpt
blob: 4a20786df063126f64bd445e45cf831d0a078e0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--TEST--
Testing register_shutdown_function()
--POST--
--GET--
ab+cd+ef+123+test
--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