Home >Backend Development >PHP Tutorial >Section 12 - Automatic loading of classes - Classes and Objects in PHP5 [12]_PHP Tutorial

Section 12 - Automatic loading of classes - Classes and Objects in PHP5 [12]_PHP Tutorial

WBOY
WBOYOriginal
2016-07-13 17:20:35901browse

Section 12 - Automatic loading of classes

When you try to use an undefined class, PHP will report a fatal error. The solution is to add a class, you can use include Include a file. After all, you know which class to use. However, PHP provides the autoloading function of classes, which can save programming time. When you try to use a class that PHP has not organized, it will look for an __autoload Global function. If this function exists, PHP will call it with one parameter, which is the name of the class.

Example 6.15 illustrates how __autoload is used. It assumes that there is one for each file in the current directory Class. When the script attempts to generate an instance of class User, PHP will execute __autoload. The script assumes that the User class is defined in class_User.php. Regardless of whether the call is in uppercase or lowercase, PHP will return the lowercase name.

Listing 6.15 Class autoloading

<?php 

   //define autoload function 

   function __autoload($class) 

   { 

       include("class_" . ucfirst($class) . ".php"); 

   } 



   //use a class that must be autoloaded 

   $u = new User; 

   $u->name = "Leon"; 

   $u->printName(); 

?> 

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/532551.htmlTechArticleSection 12 - Automatic loading of classes When you try to use an undefined class, PHP will report A fatal error. The solution is to add a class that can include a file. After all...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn