当前位置:首页 > PHP教程 > php函数 > 列表

php判断类是否存在函数 class_exists

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-20 09:22:06 浏览: 评论:0 

如果我们要判断一个类是不是可以用,可以先使用class_exists函数来判断一下,下面来看几个例子.

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

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

php实例代码如下:

  1. if (class_exists('myclass')) { 
  2.     $myclass = new myclass(); 
  3. }  
  4.  
  5. function __autoload($class
  6.     include($class . '.php'); 
  7.  
  8.     // check to see whether the include declared the class 
  9.     if (!class_exists($classfalse)) { 
  10.         trigger_error("unable to load class: $class", e_user_warning); 
  11.     } 
  12.  
  13. if (class_exists('myclass')) { 
  14.     $myclass = new myclass(); 
  15. }//开源代码phpfensi.com

Tags: php判断类存在 class_exists

分享到: