| Current Path : /hdd/hdd12/install/php/php-7.4.32/ext/reflection/tests/ |
| Current File : //hdd/hdd12/install/php/php-7.4.32/ext/reflection/tests/ReflectionFunction_isDisabled_basic.phpt |
--TEST--
ReflectionFunction::isDisabled
--CREDITS--
Stefan Koopmanschap <stefan@phpgg.nl>
TestFest PHP|Tek
--INI--
disable_functions=is_file
--FILE--
<?php
$rc = new ReflectionFunction('is_file');
var_dump($rc->isDisabled());
?>
--EXPECT--
bool(true)