diff options
Diffstat (limited to 'tests/func/005.phpt')
-rw-r--r-- | tests/func/005.phpt | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/func/005.phpt b/tests/func/005.phpt deleted file mode 100644 index 4a20786df0..0000000000 --- a/tests/func/005.phpt +++ /dev/null @@ -1,22 +0,0 @@ ---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 - |