get_defined_functions_basic.phpt 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. --TEST--
  2. get_defined_functions() function : basic functionality
  3. --FILE--
  4. <?php
  5. /* Prototype : array get_defined_functions ( void )
  6. * Description: Gets an array of all defined functions.
  7. * Source code: Zend/zend_builtin_functions.c
  8. */
  9. echo "*** Testing get_defined_functions() : basic functionality ***\n";
  10. function foo() {}
  11. // mixed case function
  12. function HelloWorld() {}
  13. Class C {
  14. function f1() {}
  15. static function f2() {}
  16. }
  17. $func = get_defined_functions();
  18. if (!is_array($func)) {
  19. echo "TEST FAILED: return type not an array\n";
  20. }
  21. if (!is_array($func["internal"])) {
  22. echo "TEST FAILED: no element in result array with key 'internal'\n";
  23. }
  24. $internal = $func["internal"];
  25. //check for a few core functions
  26. if (!in_array("cos", $internal) || !in_array("strlen", $internal)) {
  27. echo "TEST FAILED: missing elements from 'internal' array\n";
  28. var_dump($internal);
  29. }
  30. if (!is_array($func["user"])) {
  31. echo "TEST FAILED: no element in result array with key 'user'\n";
  32. }
  33. $user = $func["user"];
  34. if (count($user) == 2 && in_array("foo", $user) && in_array("helloworld", $user)) {
  35. echo "TEST PASSED\n";
  36. } else {
  37. echo "TEST FAILED: missing elements from 'user' array\n";
  38. var_dump($user);
  39. }
  40. ?>
  41. ===Done===
  42. --EXPECT--
  43. *** Testing get_defined_functions() : basic functionality ***
  44. TEST PASSED
  45. ===Done===