ReflectionFunction_isDisabled_basic.phpt 251 B

1234567891011121314
  1. --TEST--
  2. ReflectionFunction::isDisabled
  3. --CREDITS--
  4. Stefan Koopmanschap <stefan@phpgg.nl>
  5. TestFest PHP|Tek
  6. --INI--
  7. disable_functions=is_file
  8. --FILE--
  9. <?php
  10. $rc = new ReflectionFunction('is_file');
  11. var_dump($rc->isDisabled());
  12. ?>
  13. --EXPECT--
  14. bool(true)