本文整理汇总了PHP中ReflectionFunction::isDisabled方法的典型用法代码示例。如果您正苦于以下问题:PHP ReflectionFunction::isDisabled方法的具体用法?PHP ReflectionFunction::isDisabled怎么用?PHP ReflectionFunction::isDisabled使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ReflectionFunction
的用法示例。
在下文中一共展示了ReflectionFunction::isDisabled方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: isDisabled
/**
* Returns whether this function has been disabled or not
*
* @return boolean True if this function has been disabled
*/
public function isDisabled()
{
if ($this->reflectionSource instanceof ReflectionFunction) {
return $this->reflectionSource->isDisabled();
} else {
return parent::isDisabled();
}
}
示例2: highlight
/**
* Highlighter with built-in check for list of disabled function (Google AppEngine)
*
* @param string $file Name of the file
*/
public static function highlight($file)
{
$highlightFileFunc = new \ReflectionFunction('highlight_file');
if (!$highlightFileFunc->isDisabled()) {
highlight_file($file);
} else {
echo '<pre>' . htmlspecialchars(file_get_contents($file)) . '</pre>';
}
}
示例3: ReflectionFunction
<?php
$rc = new ReflectionFunction('is_file');
var_dump($rc->isDisabled());
示例4: ReflectionFunction
<?php
$rf = new ReflectionFunction('is_file');
var_dump($rf->isDisabled());
var_dump(method_exists('ReflectionFunction', 'isDisabled'));
var_dump(method_exists('ReflectionMethod', 'isDisabled'));