php判断类是否存在的函数class_exists的用法详解
程序员文章站
2022-03-06 14:16:03
...
这篇文章主要介绍了php判断类是否存在函数class_exists用法,实例分析了PHP针对类是否存在进行判断的应用,对于自动加载类以及类实例化之前的存在判断来说都非常具有实用价值,需要的朋友可以参考下
本文实例分析了php判断类是否存在函数class_exists用法。分享给大家供大家参考。具体如下:
如果我们要判断一个类是不是可以用,可以先使用class_exists函数来判断一下,下面来看几个例子。
bool class_exists ( string $class_name [, bool $autoload = true ] )
此功能是否给定的类被定义检查。this function checks whether or not the given class has been defined.
返回true,如果class_name是一个定义的类,否则返回false。
实例如下:
function autoload($class) { include($class . '.php'); // check to see whether the include declared the class if (!class_exists($class, false)) { trigger_error("unable to load class: $class", e_user_warning); } } if (class_exists('myclass')) { $myclass = new myclass(); }
以上就是php判断类是否存在的函数class_exists的用法详解的详细内容,更多请关注其它相关文章!
上一篇: PHP数组、对象的转换
推荐阅读
-
PHP strstr 函数判断字符串是否否存在的实例代码
-
PHP使用get_headers函数判断远程文件是否存在的方法
-
php判断类是否存在函数class_exists用法分析
-
PHP strstr 函数判断字符串是否否存在的实例代码
-
php检查函数必传参数是否存在的实例详解
-
php判断类是否存在函数class_exists用法分析,函数class_exists_PHP教程
-
PHP strstr 函数判断字符串是否否存在的实例代码_PHP
-
php get_headers函数的用法及判断网站是否可以打开
-
PHP使用get_headers函数判断远程文件是否存在的方法
-
PHP strstr 函数判断字符串是否否存在的实例代码