summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/ReflectionFunction_isDisabled_basic.phpt
blob: d6d2c24b8571fd35346d7baa0a6b94faddec6de4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--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());
?>
--EXPECTF--
bool(true)