


This article mainly introduces the thinkPHP5.0 frameworkautomatic loadingmechanism, and analyzes the concept, principle, usage and related notes of thinkPHP5.0 automatic loading in more detail. Friends in need can refer to
The examples in this article describe the automatic loading mechanism of the thinkPHP5.0 framework. Share it with everyone for your reference, the details are as follows:
Overview
ThinkPHP5.0 truly realizes on-demand loading, and all class libraries use automatic Loading mechanism, and supports class library mapping and automatic loading of composer class libraries.
The implementation of automatic loading is completed by the think\Loader class library, and the automatic loading specification complies with PHP's PSR-4.
Automatic loading
Since the new version of ThinkPHP fully adopts the namespace feature, you only need to correctly define the namespace where the class library is located. If the path of the namespace is consistent with the directory of the class library file, then automatic loading of classes can be achieved.
The automatic loading detection sequence of class libraries is as follows:
1. Class library mapping detection;
2. PSR-4 automatic loading detection;
3. PSR-0 automatic loading Detection;
The system will detect in sequence. Once the detection takes effect, the corresponding class library file will be automatically loaded.
Class library mapping
If we follow our namespace definition specifications above, the automatic loading of the class library can basically be completed, but if more names are defined If there is less space, the efficiency will decrease, so we can define class library mappings for commonly used class libraries. Named class library mapping is equivalent to defining an alias for the class file, which is more efficient than namespace positioning, for example:
Loader::addClassMap('think\Log',LIB_PATH.'think\Log.php'); Loader::addClassMap('org\util\Array',LIB_PATH.'org\util\Array.php');
You can also use the addClassMap method to import class library mapping definitions in batches, for example:
$map = [ 'think\Log' => LIB_PATH.'think\Log.php', 'org\util\array'=> LIB_PATH.'org\util\Array.php' ]; Loader::addClassMap($map);
Although classes registered through class library mapping are not required to correspond to namespace directories, it is still recommended to follow the PSR-4 specification to define class libraries and directories.
Class library import
If you do not need the automatic loading function of the system, or do not use a namespace, you can also use the import method of the think\Loader class. Manually load class library files, for example:
Loader::import('org.util.array'); Loader::import('@.util.upload');
Example
// 引入 extends/qrcode.php Loader::import('qrcode', EXTEND_PATH); // 助手函数 import('qrcode', EXTEND_PATH); // 引入 extends/wechat-sdk/wechat.class.php Loader::import('wechat-sdk.wechat', EXTEND_PATH, '.class.php'); // 助手函数 import('wechat-sdk.wechat', EXTEND_PATH, '.class.php');
Class library import also uses a similar concept of namespace (but does not require actual namespace support), supported "root namespace" "include:
Contents | Description |
---|---|
System | Behavior Class Library |
Core Base Class Library | |
traits | System Traits Class Library|
Application Class Library | |
represents the current Module class library package |
The above is the detailed content of Detailed analysis of thinkPHP5.0 framework automatic loading mechanism. For more information, please follow other related articles on the PHP Chinese website!

CSS回流(reflow)和重绘(repaint)是网页性能优化中非常重要的概念。在开发网页时,了解这两个概念的工作原理,可以帮助我们提高网页的响应速度和用户体验。本文将深入探讨CSS回流和重绘的机制,并提供具体的代码示例。一、CSS回流(reflow)是什么?当DOM结构中的元素发生可视性、尺寸或位置改变时,浏览器需要重新计算并应用CSS样式,然后重新布局

随着PHP语言越来越受欢迎,开发人员需要使用越来越多的类和函数。当项目规模扩大时,手动引入所有依赖项将变得不切实际。这时候就需要一种自动加载机制来简化代码开发和维护过程。自动加载机制是一种PHP语言的特性,可以在运行时自动载入所需的类和接口,并减少手动的类文件引入。这样,程序员可以专注于开发代码,减少因繁琐的手动类引入而产生的错误和时间浪费。在PHP中,一般

Go语言作为一门强类型、高效、现代化的编程语言,在现代软件开发中得到了越来越广泛的应用。其中,错误处理机制是Go语言值得关注的一个方面,而Go语言的错误处理机制相比于其他编程语言也有很大的不同和优越性。本文将介绍Go语言的错误处理机制的基本概念、实现方式以及最佳实践,以帮助读者更好地理解和使用Go语言中的错误处理机制。一、Go语言错误处理机制的基本概念在Go

Go语言是一门广泛用于系统级编程的高效编程语言,其主要优势之一是其内存管理机制。Go语言内建的垃圾回收机制(GarbageCollection,简称GC)使得程序员不必亲自进行内存分配和释放操作,提高了开发效率和代码质量。本文将对Go语言中的内存管理机制进行详细介绍。一、Go内存分配在Go语言中,内存分配使用了两个堆区:小对象堆(small

Composer是PHP中一个非常流行的依赖管理工具,可以帮助我们管理项目中需要的第三方库和组件,并自动加载这些库和组件。本文将介绍如何在PHP中使用Composer进行自动加载。安装Composer首先,你需要安装Composer。你可以在https://getcomposer.org/download/下载Composer的最新版本并安装。初始化Comp

揭秘HTTP状态码异常的发生机制HTTP状态码是指在客户端与服务器之间进行通信时,服务器返回给客户端的一个数字代码,用来表示请求的处理情况。HTTP协议定义了一系列的状态码,每个状态码都有特定的含义。正常情况下,服务器会根据请求的处理结果返回相应的状态码,从而告知客户端当前的处理状态。然而,有时候我们会遇到HTTP状态码异常的情况,即服务器返回了非预期的状态

PHP自动加载介绍PHP自动加载是一种机制,允许php在需要时自动加载类,而无需手动包含文件。这极大地简化了大型应用程序的开发,并提高了代码的可维护性。命名空间和自动加载PHP中的命名空间用于组织代码。当使用命名空间声明的类需要被加载时,PHP将执行自动加载流程。自动加载器负责根据命名空间和类名查找并加载相应的类文件。使用Composer实现自动加载Composer是PHP社区中用于依赖管理和自动加载的标准工具。安装Composer后,您可以使用以下步骤配置自动加载://composer.JSO

JavaScript如何实现滚动到页面底部自动加载的内容缩放并保持纵横比效果?在现代网页设计中,滚动到页面底部自动加载更多内容已经成为了常见的功能需求。而当加载的内容包含图片时,我们常常希望这些图片能够保持原有的纵横比。本文将介绍如何使用JavaScript来实现这个功能,并提供相应的代码示例供参考。首先,我们需要获取页面滚动的位置。在JavaScr


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

Dreamweaver CS6
Visual web development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
