summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/ReflectionFunction_isDisabled_basic.phpt
blob: 220c16f9cb10ad54dd591ddbd04129579640e49b (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());
?>
--EXPECT--
bool(true)