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