php method_exists 检测类中是否包括函数
发布:smiling 来源: PHP粉丝网 添加日期:2014-09-18 21:44:31 浏览: 评论:0
php method_exists 检测类中是否包括函数.
method_exists() 函数的语法如下:bool method_exists(object object,string method_name).
method_exists() 函数的作用是检查类的方法是否存在,如果 method_name 所指的方法在 object 所指的对象类中已定义,则返回 true,否则返回 false,实例代码如下:
- class a {
- public function xx(){
- echo 'xx';
- }
- public function yy() {
- echo 'yy';
- }
- }
- $obj = new a();
- var_dump(method_exists($obj, 'xx'));
- var_dump(method_exists($obj, 'xx'));
- var_dump(method_exists($obj, 'xx'));
- //测试结果都为true
- //开源软件:phpfensi.com
- class a {
- public function xx(){
- echo 'xx';
- }
- public function yy() {
- echo 'yy';
- }
- public function yy() {
- echo 'yy';
- }
- }
- $obj = new a();
- $obj->yy();
- $obj->yy();
以上语句报错,今天才发现原来php的对象属性是不区分大小写的.
Tags: method_exists php检测类函数
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)