Home Backend Development PHP Tutorial Detailed explanation of thinkPHP5.0 framework namespace

Detailed explanation of thinkPHP5.0 framework namespace

May 03, 2018 pm 04:29 PM
php thinkphp5.0 Detailed explanation

This article mainly introduces the thinkPHP5.0 framework namespace, and combines specific examples with a detailed analysis of the concepts, functions and related usage methods of namespaces in thinkPHP5.0. Friends who need it can refer to it

This article describes the thinkPHP5.0 framework namespace with examples. Share it with everyone for your reference, the details are as follows:

Namespace

ThinkPHP uses the namespace method to define and automatically load class library files, which effectively solves the problem of multi-module and Namespace conflicts between Composer class libraries, and a more efficient automatic loading mechanism for class libraries has been implemented.

If you don’t know the basic concept of namespace, you can refer to the PHP manual: PHP namespace

Special attention is, If you need to call PHP’s built-in class library, or a third party For class libraries that do not use namespaces, remember to add \ when instantiating the class library, for example:

// 错误的用法
$class = new stdClass();
$xml = new SimpleXmlElement($xmlstr);
// 正确的用法
$class = new \stdClass();
$xml = new \SimpleXmlElement($xmlstr);
Copy after login

In ThinkPHP5.0, You only need to correctly define the namespace where the class library is located, and the path of the namespace is consistent with the directory of the class library file, then automatic loading of the class can be achieved, thereby achieving true lazy loading.

For example, the \think\cache\driver\File class is defined as:

namespace think\cache\driver;
class File
{
}
Copy after login

If we instantiate this class, it should be :

$class = new \think\cache\driver\File();
Copy after login
Copy after login

The system will automatically load the class file corresponding to the path of this class. The path where it is located is thinkphp/library/think/cache/driver/File.php .

5.0 The default directory specification is lowercase, class file naming is camel case, and the first letter is capitalized.

In principle, directories named in camel case can be supported, as long as the namespace definition is consistent with the directory, for example:

We instantiate

$class = new \think\cache\driver\File();
Copy after login
Copy after login

The system will automatically load the thinkphp/library/Think/Cache/Driver/File.php file.

Root namespace (class library package)

The root namespace is a key concept, taking the above \think\cache\driver\File class as an example, think is a root namespace, and its corresponding initial namespace directory is the system's class library directory (thinkphp/library/think). We can simply understand that a root namespace corresponds to a class library package.

Several root namespaces (class library packages) built into the system are as follows:


NameDescriptionClass library directory
thinkSystem core class librarythinkphp/library/think
traitsSystem Trait class librarythinkphp/ library/traits
appApplication libraryapplication


如果需要增加新的根命名空间,有两种方式:注册新的根命名空间或者放入EXTEND_PATH目录(自动注册)

请注意本文中的示例代码为了简洁,如无指定类库的命名空间的话,都表示指的是think命名空间,例如下面的代码:

Route::get('hello','index/hello');
Copy after login

请自行使用:

use think\Route
Copy after login

或者:

\think\Route::get('hello','index/hello');
Copy after login

自动注册

我们只需要把自己的类库包目录放入EXTEND_PATH目录(extend,可配置),就可以自动注册对应的命名空间,例如:

我们在extend目录下面新增一个my目录,然后定义一个\my\Test类( 类文件位于extend/my/Test.php)如下:

namespace my;
class Test
{
 public function sayHello()
 {
  echo 'hello';
 }
}
Copy after login

我们就可以直接实例化和调用:

$Test = new \my\Test();
$Test->sayHello();
Copy after login

如果我们在应用入口文件中重新定义了EXTEND_PATH常量的话,还可以改变\my\Test类文件的位置,例如:

define('EXTEND_PATH','../vendor/');
Copy after login

那么\my\Test类文件的位置就变成了/vendor/my/File.php。

手动注册

也可以通过手动注册的方式注册新的根命名空间,例如:

在应用入口文件中添加下面的代码:

\think\Loader::addNamespace('my','../application/extend/my/');
Copy after login

如果要同时注册多个根命名空间,可以使用:

\think\Loader::addNamespace([
 'my' => '../application/extend/my/',
 'org' => '../application/extend/org/',
]);
Copy after login

也可以直接在应用的配置文件中添加配置,系统会在应用执行的时候自动注册。

'root_namespace' => [
 'my' => '../application/extend/my/',
 'org' => '../application/extend/org/',
]
Copy after login

应用类库包

为了避免和Composer自动加载的类库存在冲突 ,应用类库的命名空间的根都统一以app命名,例如:

namespace app\index\model;
class User extends \think\Model
{
}
Copy after login

其类文件位于 application/index/model/User.php。

namespace app\admin\Event;
class User
{
}
Copy after login

其类文件位于 application/admin/event/User.php。

如果觉得app根命名空间不合适或者有冲突,可以在应用配置文件中修改:

'app_namespace' => 'application',
Copy after login

定义后,应用类库的命名空间改为:

namespace application\index\model;
class User extends \think\Model
{
}
Copy after login

命名空间别名

框架允许给命名空间定义别名,例如:

namespace app\index\model;
use think\Model;
class User extends Model
{
}
Copy after login

原来在控制器里面调用方式为:

namespace app\index\controller;
use app\index\model\User;
class Index
{
 public function index()
 {
  $user = new User();
 }
}
Copy after login

如果我们在应用公共文件中注册命名空间别名如下:

\think\Loader::addNamespaceAlias('model','app\index\model');
Copy after login

那么,上面的控制器代码就可以更改为:

namespace app\index\controller;
use model\User;
class Index
{
 public function index()
 {
  $user = new User();
 }
}
Copy after login

本文后续的章节,均建立在你已经了解PHP命名空间的基础之上,如果不掌握请自行补充PHP基础,否则你在后续的文档和ThinkPHP5.0的学习过程中,对命名空间的缺乏理解会成为你最大的学习障碍。

相关推荐:

thinkphp5 加载静态资源路径与常量的方法

Thinkphp5行为使用方法汇总

The above is the detailed content of Detailed explanation of thinkPHP5.0 framework namespace. 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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

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)

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

7 PHP Functions I Regret I Didn't Know Before 7 PHP Functions I Regret I Didn't Know Before Nov 13, 2024 am 09:42 AM

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

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

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

PHP Program to Count Vowels in a String PHP Program to Count Vowels in a String Feb 07, 2025 pm 12:12 PM

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? Apr 03, 2025 am 12:03 AM

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

See all articles