ReflectionFunction_isGenerator_basic.phpt 798 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. --TEST--
  2. ReflectionFunction::isGenerator()
  3. --FILE--
  4. <?php
  5. $closure1 = function() {return "this is a closure"; };
  6. $closure2 = function($param) {
  7. yield $param;
  8. };
  9. $rf1 = new ReflectionFunction($closure1);
  10. var_dump($rf1->isGenerator());
  11. $rf2 = new ReflectionFunction($closure2);
  12. var_dump($rf2->isGenerator());
  13. function func1() {
  14. return 'func1';
  15. }
  16. function func2() {
  17. yield 'func2';
  18. }
  19. $rf1 = new ReflectionFunction('func1');
  20. var_dump($rf1->isGenerator());
  21. $rf2 = new ReflectionFunction('func2');
  22. var_dump($rf2->isGenerator());
  23. class Foo {
  24. public function f1() {
  25. }
  26. public function f2() {
  27. yield;
  28. }
  29. }
  30. $rc = new ReflectionClass('Foo');
  31. foreach($rc->getMethods() as $m) {
  32. var_dump($m->isGenerator());
  33. }
  34. ?>
  35. --EXPECTF--
  36. bool(false)
  37. bool(true)
  38. bool(false)
  39. bool(true)
  40. bool(false)
  41. bool(true)