PHP class_exists Check if class is defined

Source: Internet
Author: User
Tags autoload

(PHP 4, PHP 5) class_exists- Checking whether a class is defined

BOOL class_exists ( string $class _name [, bool $autoload ])

If the class referred to by class_name is already defined, this function returns TRUE, otherwise FALSEis returned.

Example #1 class_exists () Example

<? PHP // Check The class exists before trying to use it if (class_exists(' MyClass ')) {    $myclassnew  MyClass ();}? >

class_exists () will attempt to call _autoload by default, and if you do not want class_exists () to call _autoload, you can AutoLoad The parameter is set to FALSE.

Example #2 autoload parameter examples

<?PHPfunction__autoload ($class){    include($class. '. php '); //Check to see if 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=NewMyClass ();}?>

PHP class_exists Check if class is defined

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.