PHP ReflectionFunction::isDisabled 反射函数
-
定义和用法
ReflectionFunction::isDisabled - 检查函数是否被禁用 -
版本支持
PHP4 PHP5 PHP7 不支持 v5.2.0+支持 支持 -
语法
ReflectionFunction::isDisabled( void )
ReflectionFunction::isDisabled() 通过disable_functions指令检查该功能是否被禁用。 -
参数
参数 必需的 描述 无 -
返回值
如果禁用则为TRUE,否则为FALSE -
示例
尝试一下function title($title, $name) { return sprintf("%s. %s\r\n", $title, $name); } $function = new ReflectionFunction('title'); echo $function->isDisabled('Dr', 'Phil');
-
相关页面
ReflectionFunctionAbstract::isUserDefined() - 检查是否是用户定义