ReflectionFunction_isDisabled_basic.phpt   [plain text]


--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)