019.phpt 168 B

123456789
  1. --TEST--
  2. ReflectionFunction::getExtensionName
  3. --FILE--
  4. <?php
  5. $f = new ReflectionFunction("sleep");
  6. var_dump($f->getExtensionName());
  7. ?>
  8. --EXPECT--
  9. string(8) "standard"