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