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

Detailed explanation of thinkPHP5.0 framework namespace code

Mar 20, 2017 am 09:11 AM
thinkphp5.0 Namespaces

This article mainly introduces the thinkPHP5.0 frameworkNamespace, combined with specific examples, a detailed analysis of the concept, function and related usage of namespaces in thinkPHP5.0. Friends in need can refer to the following

The examples in this article describe the thinkPHP5.0 framework namespace. Share it with everyone for your reference, the details are as follows:

Namespace

ThinkPHP adopts namespace definition and automatically loads class library files, which is effective It effectively solves the namespace conflict problem between multiple modules and Composer class library, and implements a more efficient automatic loading mechanism of class libraries.

If you are unclear about the basic concept of namespace, you can refer to the PHP manual: PHP namespace

Special attention Yes, If you need to call PHP's built-in class library, or a third-party class library that does not use the namespace, 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 the automatic loading of classes 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 it The class file corresponding to the path of this class 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:

System Trait class librarythinkphp/library/traitsappApplication Class 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

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

Solve PHP error: The specified namespace class was not found Solve PHP error: The specified namespace class was not found Aug 18, 2023 pm 11:28 PM

Solve PHP error: The specified namespace class was not found. When developing using PHP, we often encounter various error messages. One of the common errors is "The specified namespace class was not found". This error is usually caused by the imported class file not being properly namespace referenced. This article explains how to solve this problem and provides some code examples. First, let’s take a look at an example of a common error message: Fatalerror:UncaughtError:C

How to use namespace in F3 framework? How to use namespace in F3 framework? Jun 03, 2023 am 08:02 AM

The F3 framework is a simple, easy-to-use, flexible and scalable PHPWeb framework. Its namespace (Namespace) mechanism provides us with a more standardized, more readable, and clearer code structure. In this article, we will explore how to use namespaces in the F3 framework. 1. What is a namespace? Namespaces are often used to solve the problem of naming conflicts in PHP. It can encapsulate one or more classes, functions or constants in a namespace, which is equivalent to adding a prefix to them. example

Design ideas and implementation methods of Redis namespace and expiration mechanism Design ideas and implementation methods of Redis namespace and expiration mechanism May 11, 2023 am 10:40 AM

Redis is an open source, high-performance key-value storage database. When using Redis for data storage, we need to consider the design of the key namespace and expiration mechanism to maintain Redis performance and data integrity. This article will introduce the design ideas and implementation methods of Redis' namespace and expiration mechanism. 1. Redis namespace design ideas In Redis, keys can be set arbitrarily. In order to facilitate the management and distinction of different data types, Redis introduces the concept of namespace. Life

C++ syntax error: undefined namespace used, how to deal with it? C++ syntax error: undefined namespace used, how to deal with it? Aug 21, 2023 pm 09:49 PM

C++ is a widely used high-level programming language. It has high flexibility and scalability, but it also requires developers to strictly master its grammatical rules to avoid errors. One of the common errors is "use of undefined namespace". This article explains what this error means, why it occurs, and how to fix it. 1. What is the use of undefined namespace? In C++, namespaces are a way of organizing reusable code in order to keep it modular and readable. You can use namespaces to make functions with the same name

Example of new features in PHP8: How to use namespaces and codes to better organize the code structure? Example of new features in PHP8: How to use namespaces and codes to better organize the code structure? Sep 11, 2023 pm 12:22 PM

Example of new features in PHP8: How to use namespaces and codes to better organize the code structure? Introduction: PHP8 is an important version of the PHP programming language, which introduces many exciting new features and improvements. One of the most important new features is namespaces. Namespaces are a way to organize your code into a better structure that avoids conflicts between classes, functions, and constants with the same name. In this article, we’ll look at how to leverage namespaces and codes to better structure your PHP8 code

PHP 5.3 new feature: How to use namespaces to resolve class name conflicts PHP 5.3 new feature: How to use namespaces to resolve class name conflicts Jul 30, 2023 pm 12:25 PM

New features of PHP5.3: How to use namespaces to solve class name conflicts Introduction: During the development of PHP, as projects become larger and more complex, class name conflicts also arise. In order to solve this problem, PHP5.3 version introduced the concept of namespace. Namespaces provide a way to organize related classes, functions, and constants together to avoid naming conflicts. This article will introduce in detail the concept of PHP namespaces and how to use namespaces to solve class name conflicts, with code examples.

Best practices for PHP autoloading: ensuring stability and performance Best practices for PHP autoloading: ensuring stability and performance Mar 02, 2024 pm 09:10 PM

PHP Autoloading Overview Autoloading is a mechanism for automatically loading classes and their dependencies before use. In PHP, this is achieved by using the __autoload() function or an autoloader such as Composer. Proper autoloading settings are critical to ensuring the stability and performance of your codebase. PSR-4 automatic loading standard PSR-4 is the automatic loading standard defined by PHP-FIG. It is based on namespace and directory structure conventions to simplify class file lookup. To comply with PSR-4: define a root namespace (e.g. MyApp). Use backslash() as namespace separator. Use lowercase letters to represent namespace elements. Create a corresponding directory for each namespace element. General essay

PHP extension development: How to use namespaces to organize and manage custom functions? PHP extension development: How to use namespaces to organize and manage custom functions? Jun 04, 2024 pm 12:59 PM

It is crucial to manage custom functions using namespaces, which allow developers to create their own naming ranges and prevent name conflicts. The steps include: creating a namespace, using the use statement to import the namespace, and calling the namespace function. In a practical case, the MyMath extension demonstrates how to use namespaces to organize mathematical functions to improve readability and maintainability.

See all articles
NameDescriptionClass library directory
thinkSystem core class librarythinkphp/library/think
##traits