ReflectionFunction_getClosureScopeClass.phpt 658 B

12345678910111213141516171819202122232425262728293031
  1. --TEST--
  2. Reflection::getClosureScopeClass()
  3. --SKIPIF--
  4. <?php
  5. if (!extension_loaded('reflection') || !defined('PHP_VERSION_ID') || PHP_VERSION_ID < 50399) {
  6. print 'skip';
  7. }
  8. ?>
  9. --FILE--
  10. <?php
  11. $closure = function($param) { return "this is a closure"; };
  12. $rf = new ReflectionFunction($closure);
  13. var_dump($rf->getClosureScopeClass());
  14. Class A {
  15. public static function getClosure() {
  16. return function($param) { return "this is a closure"; };
  17. }
  18. }
  19. $closure = A::getClosure();
  20. $rf = new ReflectionFunction($closure);
  21. var_dump($rf->getClosureScopeClass());
  22. echo "Done!\n";
  23. --EXPECTF--
  24. NULL
  25. object(ReflectionClass)#%d (1) {
  26. ["name"]=>
  27. string(1) "A"
  28. }
  29. Done!