ReflectionMethod_getClosure_basic.phpt 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. --TEST--
  2. Test ReflectionMethod::getClosure() function : basic functionality
  3. --FILE--
  4. <?php
  5. /* Prototype : public mixed ReflectionFunction::getClosure()
  6. * Description: Returns a dynamically created closure for the method
  7. * Source code: ext/reflection/php_reflection.c
  8. * Alias to functions:
  9. */
  10. echo "*** Testing ReflectionMethod::getClosure() : basic functionality ***\n";
  11. class StaticExample
  12. {
  13. static function foo()
  14. {
  15. var_dump( "Static Example class, Hello World!" );
  16. }
  17. }
  18. class Example
  19. {
  20. public $bar = 42;
  21. public function foo()
  22. {
  23. var_dump( "Example class, bar: " . $this->bar );
  24. }
  25. }
  26. // Initialize classes
  27. $class = new ReflectionClass( 'Example' );
  28. $staticclass = new ReflectionClass( 'StaticExample' );
  29. $object = new Example();
  30. $fakeobj = new StdClass();
  31. $method = $staticclass->getMethod( 'foo' );
  32. $closure = $method->getClosure();
  33. $closure();
  34. $method = $class->getMethod( 'foo' );
  35. $closure = $method->getClosure( $object );
  36. $closure();
  37. $object->bar = 34;
  38. $closure();
  39. ?>
  40. ===DONE===
  41. --EXPECTF--
  42. *** Testing ReflectionMethod::getClosure() : basic functionality ***
  43. string(34) "Static Example class, Hello World!"
  44. string(22) "Example class, bar: 42"
  45. string(22) "Example class, bar: 34"
  46. ===DONE===