本教程操作环境:windows7系统、PHP7.1版、DELL G3电脑在php中,可以使用get_class_methods()函数来查询类里面有哪些方法。get_class_methods()函数可以获取类的所有方法,返回由类的方法名组
本教程操作环境: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 5 起,本函数按照方法被定义的名字返回(区分大小写)。在 PHP 4 中总是返回小写的。
--结束END--
本文标题: php怎么查询类里面有哪些方法
本文链接: https://lsjlt.com/news/1048.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0