1234567891011121314151617 |
- --TEST--
- ReflectionFunction::isDisabled
- --CREDITS--
- Stefan Koopmanschap <stefan@phpgg.nl>
- TestFest PHP|Tek
- --SKIPIF--
- <?php
- if (!extension_loaded('reflection')) print 'skip';
- ?>
- --INI--
- disable_functions=is_file
- --FILE--
- <?php
- $rc = new ReflectionFunction('is_file');
- var_dump($rc->isDisabled());
- --EXPECTF--
- bool(true)
|