本教程操作环境:windows7系统、PHP7.1版,DELL G3电脑php检查类的方法是否存在可以使用method_exists()函数。method_exists — 检查类的方法是否存在,检查类的方法是否存在于指定的 object中
本教程操作环境:windows7系统、PHP7.1版,DELL G3电脑
php检查类的方法是否存在可以使用method_exists()函数。
method_exists — 检查类的方法是否存在,检查类的方法是否存在于指定的 object中。
语法:
method_exists($object,$method_name)
参数:
object:对象示例或者类名。
method_name:方法名。
返回值:如果 method_name 所指的方法在 object 所指的对象类中已定义,则返回 true,否则返回 false。
示例:
<?php
$directory = new Directory('.');
var_dump(method_exists($directory,'read'));
?>
输出结果:
bool(true)
--结束END--
本文标题: php怎么检查类的方法是否存在
本文链接: https://lsjlt.com/news/189.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