summaryrefslogtreecommitdiff
path: root/Zend/tests/methods-on-non-objects-call-user-func.phpt
blob: 027aa64c2036cc8902edac22b9b4e22c3bdca29e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
call_user_func() in combination with "Call to a member function method() on a non-object"
--FILE--
<?php
$comparator= null;
var_dump(call_user_func([$comparator, 'compare'], 1, 2));
echo "Alive\n";
?>
--EXPECTF--
Warning: call_user_func() expects parameter 1 to be a valid callback, first array member is not a valid class name or object in %s on line %d
NULL
Alive