ReflectionExtension_getClassNames_basic.phpt 421 B

1234567891011121314151617181920
  1. --TEST--
  2. ReflectionExtension::getClassNames() method on an extension which actually returns some information
  3. --CREDITS--
  4. Felix De Vliegher <felix.devliegher@gmail.com>
  5. --FILE--
  6. <?php
  7. $standard = new ReflectionExtension('standard');
  8. var_dump($standard->getClassNames());
  9. ?>
  10. ==DONE==
  11. --EXPECTF--
  12. array(3) {
  13. [0]=>
  14. %s(22) "__PHP_Incomplete_Class"
  15. [1]=>
  16. %s(15) "php_user_filter"
  17. [2]=>
  18. %s(9) "Directory"
  19. }
  20. ==DONE==