欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php判断类是否存在函数 class_exists

程序员文章站 2022-04-03 15:14:22
...
如果我们要判断一个类是不是可以用,可以先使用class_exists函数来判断一下,下面来看几个例子.

bool class_exists ( string $class_name [, bool $autoload = true ] )

此功能是否给定的类被定义检查,返回true,如果class_name是一个定义的类,否则返回false.

php实例代码如下:

if (class_exists('myclass')) {

$myclass = new myclass();

}

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();

}//开源代码phpfensi.com

相关标签: php