当前位置:Gxlcms > PHP教程 > php开发问题-class_exists

php开发问题-class_exists

时间:2021-07-01 10:21:17 帮助过:91人阅读

判断类是否存在的时候,提示错误信息 找不到文件 include(XXXXX.php): failed to open stream: No such file or directory

所有在使用class_exists时先要判断类的文件是否存在,代码如下:

file_exists('../xxxx/'.$class_name)&&class_exists($class_name)

人气教程排行