php通过function_exists检测函数是否存在的方法
发布:smiling 来源: PHP粉丝网 添加日期:2021-05-16 19:56:02 浏览: 评论:0
这篇文章主要介绍了php通过function_exists检测函数是否存在的方法,实例分析了php使用function_exists检测函数是否存在及调用的相关技巧,非常具有实用价值,需要的朋友可以参考下
本文实例讲述了php通过function_exists检测函数是否存在的方法。分享给大家供大家参考。具体分析如下:
php中可以通过function_exists()函数检测另外一个函数是否存在,可以把函数名作为一个字符串传入function_exists,判断该还是是否存在
- function highlight( $txt ) {
- return "<sub>$txt</sub>";
- }
- function textWrap( $tag, $txt, $func="" ) {
- if (function_exists( $func ) )
- $txt = $func($txt);
- return "<$tag>$txt</$tag>\n";
- }
用法示例如下:
echo textWrap('i','function exists Demo','highlight');
输出结果为斜体字的: function exists Demo
Tags: function_exists php检测函数
相关文章
- ·php function_exists判断函数可用代码(2014-09-19)
- ·php检测函数是否存在函数 function_exists(2014-09-20)
- ·php使用function_exists判断函数可用的方法(2021-04-27)
- ·sql 注入字符的检测函数(2014-08-23)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)