PHP程序员站--PHP编程开发平台
 当前位置:主页 >> PHP基础 >> 每日技巧 >> 

用method_exists检查某个类的方法是否存在

用method_exists检查某个类的方法是否存在

来源:phperz.com  作者:phperz.com  发布时间:2009-09-10
今天要说的是method_exists这个函数的用法 如果你研究过框架的

今天要说的是method_exists这个函数的用法
如果你研究过框架的运行原理,一定对这个函数不陌生.
他的功能就像他的名子描述的一样,用来检查一个类中是否存在某个方法.

用法:
method_exists(对象名,方法名)
存在返回true,不存在返回false

例:

class say{

   function hello(){
      echo "hello world";
   }
}

$a = new say;

if (method_exists($a,"hello")){
   echo "方法hello存在";
}
else{
    echo "方法hello不存在";
}


延伸阅读:
PHP通用分页类
javascript eval 方法
php验证码类
Tags: method_exists   方法     class  
最新文章
推荐阅读
月点击排行榜
PHP程序员站 Copyright © 2007-2010,PHPERZ.COM All Rights Reserved 粤ICP备07503606号