ReflectionFunction_isClosure_basic.phpt 267 B

12345678910111213
  1. --TEST--
  2. Reflection::isClosure
  3. --CREDITS--
  4. Stefan Koopmanschap <stefan@phpgg.nl>
  5. TestFest PHP|Tek
  6. --FILE--
  7. <?php
  8. $closure = function($param) { return "this is a closure"; };
  9. $rc = new ReflectionFunction($closure);
  10. var_dump($rc->isClosure());
  11. ?>
  12. --EXPECT--
  13. bool(true)