summaryrefslogtreecommitdiff
path: root/tests/func/005.phpt
blob: e19eda496b2973f41b05794d13f448baa89bd74d (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