bug70674.phpt 208 B

12345678
  1. --TEST--
  2. Bug #70674 (ReflectionFunction::getClosure() leaks memory when used for internal functions)
  3. --FILE--
  4. <?php
  5. var_dump(((new ReflectionFunction("strlen"))->getClosure())("hello"));
  6. ?>
  7. --EXPECT--
  8. int(5)