1--TEST--
2ReflectionFunction::isDisabled
3--CREDITS--
4Stefan Koopmanschap <stefan@phpgg.nl>
5TestFest PHP|Tek
6--INI--
7disable_functions=is_file
8--FILE--
9<?php
10$rc = new ReflectionFunction('is_file');
11var_dump($rc->isDisabled());
12?>
13--EXPECT--
14bool(true)
15