diff options
Diffstat (limited to 'Zend/tests/methods-on-non-objects-as-arg.phpt')
-rwxr-xr-x | Zend/tests/methods-on-non-objects-as-arg.phpt | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/Zend/tests/methods-on-non-objects-as-arg.phpt b/Zend/tests/methods-on-non-objects-as-arg.phpt deleted file mode 100755 index 13b83cb06e..0000000000 --- a/Zend/tests/methods-on-non-objects-as-arg.phpt +++ /dev/null @@ -1,47 +0,0 @@ ---TEST-- -Catch method calls on non-objects as argument ---FILE-- -<?php -function nesting() { - return func_get_args(); -} -set_error_handler(function($code, $message) { - static $i= 0; - echo 'Called #'.(++$i)."\n"; -}); - -$x= null; -var_dump(nesting($x->method())); -var_dump(nesting(nesting($x->method()))); -var_dump(nesting($x->method(nesting($x->method())))); -var_dump(nesting($x->method(), $x->method())); -echo "Alive\n"; -?> ---EXPECTF-- -Called #1 -array(1) { - [0]=> - NULL -} -Called #2 -array(1) { - [0]=> - array(1) { - [0]=> - NULL - } -} -Called #3 -array(1) { - [0]=> - NULL -} -Called #4 -Called #5 -array(2) { - [0]=> - NULL - [1]=> - NULL -} -Alive |