Home Backend Development PHP Tutorial Detailed explanation of automatic loading of PHP files

Detailed explanation of automatic loading of PHP files

May 19, 2018 am 10:42 AM
php use Detailed explanation

This time I will bring you PHP filesAutomatic loadingDetailed explanation of use, what are the Notes for automatic loading of PHP files, the following is a practical case, let's take a look.

Traditionally, in PHP, when we want to use a class file, we have to require or include it at the head of the document:

<?php
require_once('../includes/functions.php');
require_once('../includes/database.php');
require_once('../includes/user.php');
...
Copy after login

But once there are many documents to be called , you have to write one line each time, which doesn’t look pretty. Is there any way to make the PHP document load automatically?

<?php
function autoload($class_name)
{
  require "./{$class_name}.php";
}
Copy after login

Yes, you can use PHP’s magic function autoload(). The above example is to automatically load the PHP file in the current directory. Of course, in practice, we are more likely to use it like this:

<?php
function autoload($class_name)
{
  $name = strtolower($class_name);
  $path = "../includes/{$name}.php";
  
  if(file_exists($path)){
     require_once($path);
    }else{
      die("the file {$class_name} could not be found");
    }
}
Copy after login

That is to say, we do a certain case processing of the file name, and then check whether the file exists before require. If it does not exist, display customized information. .

Similar usage is often seen in private projects, or in the framework of a single project. Why? Because you can only define one autoload function, in multi-person development, it is impossible for different developers to use different customized autoloaders, unless everyone agrees in advance to use one autoload, and synchronize versions when changes are involved. , which is very troublesome.

Mainly because of this, the good news is that this autoload function will soon be deprecated in version 7.2 of PHP.

Warning This feature has been DEPRECATED as of PHP 7.2.0. Relying on this feature is highly discouraged.
Then it is replaced by something called spl_autoload_register(), which has the advantage of being customizable Multiple autoloaders.

//使用匿名函数来autoload
spl_autoload_register(function($class_name){
  require_once('...');
});
Copy after login
//使用一个全局函数
function Custom()
{
  require_once('...');
}
spl_autoload_register('Custom');
Copy after login
//使用一个class当中的static方法
class MyCustomAutoloader
{
  static public function myLoader($class_name)
  {
    require_once('...');    
  }
}
//传array进来,第一个是class名,第二个是方法名
spl_autoload_register(['MyCustomAutoloader','myLoader']);
Copy after login
//甚至也可以用在实例化的object上
class MyCustomAutoloader
{
  public function myLoader($class_name)
  {
  }
}
$object = new MyCustomAutoloader;
spl_autoload_register([$object,'myLoader']);
Copy after login

It is worth mentioning that using autoload, whether it is autoload() or spl_autoload_register(), compared with require or include, the advantage is that the autoload mechanism is lazy loading, that is, it does not It is not that all those files are called for you as soon as you run it, but only the ones you use, such as which files are new, will the corresponding files be loaded through the autoload mechanism.

Of course, spl_autoload_register is often used in laravel including various packages, such as here:

/**
 * Prepend the load method to the auto-loader stack.
 *
 * @return void
 */
protected function prependToLoaderStack()
{
  spl_autoload_register([$this, 'load'], true, true);
}
Copy after login

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related topics on the PHP Chinese website article!

Recommended reading:

Detailed explanation of the steps to implement dependency injection using PHP class reflection

How to delete files in the directory using PHP unlink and rmdir accomplish

The above is the detailed content of Detailed explanation of automatic loading of PHP files. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

See all articles