PHP 中的 use 关键字

Subodh Poudel 2023年1月30日
  1. PHP 中 namespace 的介绍和实现
  2. 在 PHP 中实现 usenamespace
  3. 在 PHP 中使用 use 对多个类进行分组
PHP 中的 use 关键字

本文将介绍 PHP 中的 usenamespace。然后,我们将通过创建一个小项目来完成这些关键字的实现。

PHP 中 namespace 的介绍和实现

PHP 中的命名空间是一个包含代码块的标签。我们可以使用命名空间从项目中的其他位置访问特定的代码块。

例如,命名空间可以包含类、函数、常量等代码块。

命名空间主要解决两个问题。这些都是:

  • 命名空间避免了类或函数之间的名称冲突。例如,当用户定义的函数与核心 PHP 函数或库函数的名称匹配时,可能会出现歧义。
  • 命名空间允许在项目期间模块之间更好的通信和组织。我们可以给组件起别名以获得更好的可读性。
注意
namespace 关键字表示命名空间,它应该是 PHP 文件中的第一行代码。

让我们看一个命名空间如何工作的例子。创建一个类 Greetings 并在其中编写一个构造函数。

显示消息 Hello everyone!在构造函数内部。将文件另存为 greetings.php

接下来,在与 index.php 相同的目录中创建另一个文件。首先,使用 require 函数要求 greetings.php

然后,创建一个变量 $hello 并将 Greetings 类实例实例化为 $hello = new Greetings

当我们提供 index.php 文件时,它会给出一个错误,Class 'Greetings' not found。为了解决这个问题,我们可以使用命名空间。

为此,在 greetings.php 文件中创建命名空间 subodh\project。接下来,在 index.php 文件中,在类 Greetings 之前使用命名空间 subodh\project

这一次,消息 Hello everyone!被显示。这就是如何使用命名空间来组织项目中的组件。

我们也可以类似地使用命名空间来组织函数和变量。

namespace subodh\project;

class Greetings{
    public function __construct(){
        print("Hello everyone!")."<br>";
 }
}

function greet(){
    print("Good Morning!")."<br>";
}

const greeting = "have a nice day"."<br>";
require 'greetings.php';
$hello = new subodh\project\Greetings;
subodh\project\greet();
echo subodh\project\greeting;

输出:

Hello everyone!
Good Morning!
have a nice day

在 PHP 中实现 usenamespace

我们可以使用 PHP 中的 use 关键字来导入 PHP 中的 namespace 并为其赋予别名。因此,我们可以用短别名替换长命名空间。

这提高了代码的可读性。我们可以使用别名来表示命名空间。

首先,我们将使用 use 关键字来创建上面编写的示例代码的命名空间的别名。

例如,在 index.php 文件中,写入 use 关键字,将 greetings.php 文件中写入的命名空间导入为 use subodh\project

这意味着现在我们可以使用 project 来访问类、函数和常量,如下例所示。

require 'greetings.php';
use subodh\project;

$hello = new project\Greetings;
project\greet();
echo project\greeting;

我们还可以如下创建自定义别名。

require 'greetings.php';

use subodh\project as pr;

$hello = new pr\Greetings;
pr\greet();
echo pr\greeting;

我们还可以使用 use 关键字导入类、函数和常量。我们可以在类的 use 关键字之后写命名空间。

首先,我们应该在命名空间的末尾附加类名。然后,我们可以直接访问该类。

在函数和常量的情况下,我们应该在 use 关键字之后分别写关键字 functionconstant

之后,我们可以编写命名空间,附加函数和常量的名称。示例如下所示。

use subodh\project\Greetings;
$hello = new Greetings;

use function subodh\project\greet;
greet();

use const subodh\project\greeting;
echo greeting;

上述所有方法的输出都是相同的。

输出:

Hello everyone!
Good Morning!
have a nice day

在 PHP 中使用 use 对多个类进行分组

正如 PHP7 中介绍的那样,我们可以在使用 use 关键字时对类、函数和常量进行分组。

此功能可防止 use 关键字的多次使用,并使代码更简洁易懂。

代码的行数也减少了,并且保持了可重用性。让我们考虑以下 vehicle.php 文件。

它包含两个类,CarMotorcycle 以及构造函数。此外,我们还创建了命名空间 subodh\project

namespace subodh\project;

class Car{
    public function __construct(){
        print("This is Car class")."<br>";
 }
}

class Motorcycle{
    public function __construct(){
        print("This is Motorcycle class")."<br>";
 }
}

我们可以使用一次 use 关键字将两个类作为同一个命名空间导入。我们可以在命名空间后面的花括号中包含类名。

我们甚至可以为该类创建一个别名。逗号分隔类名。

例如,在 use 关键字之后写入命名空间 subodh\project\{}。然后,在花括号内,写上 Car 类,并在逗号后写摩托车类。

最后,为 Motorcycle 类写别名 bike。现在,我们可以通过使用 new 关键字实例化 Carbike 来创建这些类的对象。

require('vehicle.php');
use subodh\project\{Car, Motorcycle as bike};
$car = new Car;
$bike = new bike;

输出:

This is Car class
This is Motorcycle class

因此,我们可以使用 use 关键字对 PHP 命名空间中的类进行分组。我们也可以类似地对函数和常量进行分组。

作者: Subodh Poudel
Subodh Poudel avatar Subodh Poudel avatar

Subodh is a proactive software engineer, specialized in fintech industry and a writer who loves to express his software development learnings and set of skills through blogs and articles.

LinkedIn