php如何判断类方法是否存在
程序员文章站
2022-03-07 10:59:12
...
在PHP中可以通过“class_exists”函数判断类方法是否存在,其语法是“bool class_exists ( string $class_name [, bool $autoload = true ] )”。
php判断类是否存在
bool class_exists ( string $class_name [, bool $autoload = true ] ) 检查一个类是否已经定义,一定以返回true,否则返回false,例如:
if(class_exists('MySQL')){ $myclass=new MySQL(); }
更多相关知识,请访问PHP中文网!
以上就是php如何判断类方法是否存在的详细内容,更多请关注其它相关文章!
上一篇: html中scrolling是什么意思
下一篇: php 无法访问此网站怎么办