callbacks_002.phpt 572 B

12345678910111213141516
  1. --TEST--
  2. call_user_func(): Wrong parameters
  3. --FILE--
  4. <?php
  5. call_user_func(array('Foo', 'bar'));
  6. call_user_func(array(NULL, 'bar'));
  7. call_user_func(array('stdclass', NULL));
  8. ?>
  9. --EXPECTF--
  10. Warning: call_user_func() expects parameter 1 to be a valid callback, class 'Foo' not found in %s on line %d
  11. 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
  12. Warning: call_user_func() expects parameter 1 to be a valid callback, second array member is not a valid method in %s on line %d