php判断类是否存在函数class_exists用法分析,函数class_exists_PHP教程
程序员文章站
2022-06-14 15:42:25
...
php判断类是否存在函数class_exists用法分析,函数class_exists
本文实例分析了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();
}
{
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程序设计有所帮助。
推荐阅读
-
PHP strstr 函数判断字符串是否否存在的实例代码_PHP教程
-
php判断常量、变量和函数是否存在_PHP教程
-
php判断类是否存在函数class_exists用法分析
-
php判断某个方法是否存在函数function_exists (),method_exists()与is_callable()区别与用法解析
-
php判断类是否存在函数class_exists用法分析
-
php判断某个方法是否存在函数function_exists (),method_exists()与is_callable()区别与用法解析
-
php判断类是否存在函数class_exists用法分析,函数class_exists_PHP教程
-
php 判断常量、变量和函数是否存在_PHP教程
-
php判断类是否存在函数class_exists用法分析,函数class_exists
-
PHP 判断常量,变量和函数是否存在_PHP教程