function_exists_error.phpt 733 B

1234567891011121314151617181920212223242526272829303132333435
  1. --TEST--
  2. Test function_exists() function : error conditions
  3. --FILE--
  4. <?php
  5. /*
  6. * proto bool function_exists(string function_name)
  7. * Function is implemented in Zend/zend_builtin_functions.c
  8. */
  9. echo "*** Testing function_exists() : error conditions ***\n";
  10. $arg_0 = "ABC";
  11. $extra_arg = 1;
  12. echo "\nToo many arguments\n";
  13. var_dump(function_exists($arg_0, $extra_arg));
  14. echo "\nToo few arguments\n";
  15. var_dump(function_exists());
  16. ?>
  17. ===Done===
  18. --EXPECTF--
  19. *** Testing function_exists() : error conditions ***
  20. Too many arguments
  21. Warning: function_exists() expects exactly 1 parameter, 2 given in %s on line %d
  22. NULL
  23. Too few arguments
  24. Warning: function_exists() expects exactly 1 parameter, 0 given in %s on line %d
  25. NULL
  26. ===Done===