站长资讯网
最全最丰富的资讯网站

php怎么查询类里面有哪些方法

在php中,可以使用get_class_methods()函数来查询类里面有哪些方法,该函数可以获取类的所有方法,返回由类的方法名组成的数组,语法为“get_class_methods(类名')”。

php怎么查询类里面有哪些方法

本教程操作环境:windows7系统、PHP7.1版、DELL G3电脑

在php中,可以使用get_class_methods()函数来查询类里面有哪些方法。

get_class_methods()函数可以获取类的所有方法,返回由类的方法名组成的数组。

语法:

get_class_methods($class_name)
  • $class_name:类名或者对象实例。

返回值:返回由 $class_name 指定的类中定义的方法名所组成的数组。如果出错,则返回 null。

示例:

<?php  class myclass {     // constructor     function myclass()     {         return(true);     }      // method 1     function myfunc1()     {         return(true);     }      // method 2     function myfunc2()     {         return(true);     } }  $class_methods = get_class_methods('myclass'); // or $class_methods = get_class_methods(new myclass());  foreach ($class_methods as $method_name) {     echo "$method_name<br>"; }  ?>

输出结果:

php怎么查询类里面有哪些方法

注意:

自 PHP 5 起,本函数按照方法被定义的名字返回(区分大小写)。在 PHP 4 中总是返回小写的。

推荐学习:《PHP视频教程》

赞(0)
分享到: 更多 (0)
网站地图   沪ICP备18035694号-2    沪公网安备31011702889846号