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