php通过function_exists检测函数是否存在的解决办法
内容摘要
这篇文章主要为大家详细介绍了php通过function_exists检测函数是否存在的简单示例,具有一定的参考价值,可以用来参考一下。
对php中通过function_exists检测函数是否存在对此
对php中通过function_exists检测函数是否存在对此
文章正文
这篇文章主要为大家详细介绍了php通过function_exists检测函数是否存在的简单示例,具有一定的参考价值,可以用来参考一下。
对php中通过function_exists检测函数是否存在对此感兴趣的朋友,看看idc笔记做的技术笔记!php中可以通过function_exists()函数检测另外一个函数是否存在,可以把函数名作为一个字符串传入function_exists,判断该还是是否存在
/**
* php中通过function_exists检测函数是否存在
*
* @param
* @arrange 512-笔记网: 512PiC.com
**/
function highlight( $txt ) {
return "<sub>$txt</sub>";
}
function textWrap( $tag, $txt, $func="" ) {
if (function_exists( $func ) )
$txt = $func($txt);
return "<$tag>$txt</$tag>\n";
}
/*** 来自php教程(www.idcnote.com) ***/
注:关于php通过function_exists检测函数是否存在的简单示例的内容就先介绍到这里,更多相关文章的可以留意
代码注释