PHP Automatic Loading class Usage example analysis, PHP loading example Analysis _php Tutorial

Source: Internet
Author: User
Tags autoload php regular expression

PHP Automatic Loading class Usage example analysis, PHP loading example analysis


This example describes the PHP automatic loading class usage. Share to everyone for your reference, as follows:

<?php//function __autoload ($class _name) {//  require_once $class _name. '. php ';//}spl_autoload_register ("core", ' autoload '));//When instantiating a class, automatically call the AutoLoad () method in the core class to load the class///You can also use __ AutoLoad (), but the new version of PHP is recommended to use Spl_autoload_register, because __autoload () is gradually discarded $obj = new MyClass1 (); $obj 2 = new MyClass2 (); Class core{public  static function AutoLoad ($class) {    require $class. php ';  }}

Understanding ideas is the key:

Automatically load objects

Many developers write object-oriented applications to create a PHP source file for each class definition. A big annoyance is having to write a long list of included files (one file per class) at the beginning of each script.

In PHP 5, this is no longer necessary. You can define a __autoload () function that will be called automatically when you try to use a class that is not already defined. By calling this function, the scripting engine has the last chance to load the required classes before PHP fails.

Tip

Spl_autoload_register () provides a more flexible way to implement automatic loading of classes. Therefore, it is no longer recommended to use the __autoload () function, which may be deprecated in later versions.

More readers interested in PHP related content can view the topic: "PHP Primer for Object-oriented programming", "PHP Math Skills Summary", "PHP operation Office Document Skills Summary (including word,excel,access,ppt)", "PHP Array ( Array), "PHP Data structure and algorithm tutorial", "PHP Programming Algorithm Summary", "PHP Regular Expression Usage Summary", and "PHP Common database Operation Skills Summary"

I hope this article is helpful to you in PHP programming.

http://www.bkjia.com/PHPjc/1138983.html www.bkjia.com true http://www.bkjia.com/PHPjc/1138983.html techarticle PHP Automatic Loading class Usage example analysis, PHP loading example Analysis This article describes the PHP automatic loading class usage. Share to everyone for your reference, specifically as follows: Php//function __autolo ...

  • Related Article

    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.