首页 后端开发 PHP问题 php面试怎么实现反射注入

php面试怎么实现反射注入

Sep 29, 2019 pm 05:48 PM
php 面试

php面试怎么实现反射注入

PHP具有完整的反射API,提供了对类、接口、函数、方法和扩展进行逆向工程的能力。通过类的反射提供的能力我们能够知道类是如何被定义的,它有什么属性、什么方法、方法都有哪些参数,类文件的路径是什么等很重要的信息。正是因为类的反射,很多PHP框架才能实现依赖注入自动解决类与类之间的依赖关系,这给我们平时的开发带来了很大的方便。

本文主要是讲解如何利用类的反射来实现依赖注入(Dependency Injection),并不会去逐条讲述PHP Reflection里的每一个API。为了更好地理解,我们通过一个例子来看类的反射,以及如何实现依赖注入。

下面这个类代表了坐标系里的一个点,有两个属性横坐标x和纵坐标y。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

/**

 * Class Point

 */

class Point

{

  public $x;

  public $y;

 

  /**

   * Point constructor.

   * @param int $x horizontal value of point's coordinate

   * @param int $y vertical value of point's coordinate

   */

  public function __construct($x = 0, $y = 0)

  {

    $this->x = $x;

    $this->y = $y;

  }

}

登录后复制

接下来这个类代表圆形,可以看到在它的构造函数里有一个参数是Point类的,即Circle类是依赖与Point类的。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

class Circle

{

  /**

   * @var int

   */

  public $radius;//半径

 

  /**

   * @var Point

   */

  public $center;//圆心点

 

  const PI = 3.14;

 

  public function __construct(Point $point, $radius = 1)

  {

    $this->center = $point;

    $this->radius = $radius;

  }

   

  //打印圆点的坐标

  public function printCenter()

  {

    printf('center coordinate is (%d, %d)', $this->center->x, $this->center->y);

  }

 

  //计算圆形的面积

  public function area()

  {

    return 3.14 * pow($this->radius, 2);

  }

}

登录后复制

ReflectionClass

下面我们通过反射来对Circle这个类进行反向工程。把Circle类的名字传递给reflectionClass来实例化一个ReflectionClass类的对象。

1

2

3

4

5

6

$reflectionClass = new reflectionClass(Circle::class);

//返回值如下

object(ReflectionClass)#1 (1) {

 ["name"]=>

 string(6) "Circle"

}

登录后复制

反射出类的常量

1

$reflectionClass->getConstants();

登录后复制

返回一个由常量名称和值构成的关联数组

1

2

3

4

array(1) {

 ["PI"]=>

 float(3.14)

}

登录后复制

通过反射获取属性

1

$reflectionClass->getProperties();

登录后复制

返回一个由ReflectionProperty对象构成的数组

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

array(2) {

 [0]=>

 object(ReflectionProperty)#2 (2) {

  ["name"]=>

  string(6) "radius"

  ["class"]=>

  string(6) "Circle"

 }

 [1]=>

 object(ReflectionProperty)#3 (2) {

  ["name"]=>

  string(6) "center"

  ["class"]=>

  string(6) "Circle"

 }

}

登录后复制

反射出类中定义的方法

1

$reflectionClass->getMethods();

登录后复制

返回ReflectionMethod对象构成的数组

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

array(3) {

 [0]=>

 object(ReflectionMethod)#2 (2) {

  ["name"]=>

  string(11) "__construct"

  ["class"]=>

  string(6) "Circle"

 }

 [1]=>

 object(ReflectionMethod)#3 (2) {

  ["name"]=>

  string(11) "printCenter"

  ["class"]=>

  string(6) "Circle"

 }

 [2]=>

 object(ReflectionMethod)#4 (2) {

  ["name"]=>

  string(4) "area"

  ["class"]=>

  string(6) "Circle"

 }

}

登录后复制

我们还可以通过getConstructor()来单独获取类的构造方法,其返回值为一个ReflectionMethod对象。

1

$constructor = $reflectionClass->getConstructor();

登录后复制

反射出方法的参数

1

$parameters = $constructor->getParameters();

登录后复制

其返回值为ReflectionParameter对象构成的数组。

1

2

3

4

5

6

7

8

9

10

11

12

array(2) {

 [0]=>

 object(ReflectionParameter)#3 (1) {

  ["name"]=>

  string(5) "point"

 }

 [1]=>

 object(ReflectionParameter)#4 (1) {

  ["name"]=>

  string(6) "radius"

 }

}

登录后复制

依赖注入

好了接下来我们编写一个名为make的函数,传递类名称给make函数返回类的对象,在make里它会帮我们注入类的依赖,即在本例中帮我们注入Point对象给Circle类的构造方法。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

//构建类的对象

function make($className)

{

  $reflectionClass = new ReflectionClass($className);

  $constructor = $reflectionClass->getConstructor();

  $parameters = $constructor->getParameters();

  $dependencies = getDependencies($parameters);

   

  return $reflectionClass->newInstanceArgs($dependencies);

}

 

//依赖解析

function getDependencies($parameters)

{

  $dependencies = [];

  foreach($parameters as $parameter) {

    $dependency = $parameter->getClass();

    if (is_null($dependency)) {

      if($parameter->isDefaultValueAvailable()) {

        $dependencies[] = $parameter->getDefaultValue();

      } else {

        //不是可选参数的为了简单直接赋值为字符串0

        //针对构造方法的必须参数这个情况

        //laravel是通过service provider注册closure到IocContainer,

        //在closure里可以通过return new Class($param1, $param2)来返回类的实例

        //然后在make时回调这个closure即可解析出对象

        //具体细节我会在另一篇文章里面描述

        $dependencies[] = '0';

      }

    } else {

      //递归解析出依赖类的对象

      $dependencies[] = make($parameter->getClass()->name);

    }

  }

 

  return $dependencies;

}

登录后复制

定义好make方法后我们通过它来帮我们实例化Circle类的对象:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

$circle = make('Circle');

$area = $circle->area();

/*var_dump($circle, $area);

object(Circle)#6 (2) {

 ["radius"]=>

 int(1)

 ["center"]=>

 object(Point)#11 (2) {

  ["x"]=>

  int(0)

  ["y"]=>

  int(0)

 }

}

float(3.14)*/

登录后复制

通过上面这个实例我简单描述了一下如何利用PHP类的反射来实现依赖注入,Laravel的依赖注入也是通过这个思路来实现的,只不过设计的更精密大量地利用了闭包回调来应对各种复杂的依赖注入。

推荐教程:PHP视频教程

以上是php面试怎么实现反射注入的详细内容。更多信息请关注PHP中文网其他相关文章!

本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

AI Hentai Generator

AI Hentai Generator

免费生成ai无尽的。

热门文章

R.E.P.O.能量晶体解释及其做什么(黄色晶体)
2 周前 By 尊渡假赌尊渡假赌尊渡假赌
仓库:如何复兴队友
1 个月前 By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island冒险:如何获得巨型种子
4 周前 By 尊渡假赌尊渡假赌尊渡假赌

热工具

记事本++7.3.1

记事本++7.3.1

好用且免费的代码编辑器

SublimeText3汉化版

SublimeText3汉化版

中文版,非常好用

禅工作室 13.0.1

禅工作室 13.0.1

功能强大的PHP集成开发环境

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具

SublimeText3 Mac版

SublimeText3 Mac版

神级代码编辑软件(SublimeText3)

CakePHP 项目配置 CakePHP 项目配置 Sep 10, 2024 pm 05:25 PM

在本章中,我们将了解CakePHP中的环境变量、常规配置、数据库配置和电子邮件配置。

适用于 Ubuntu 和 Debian 的 PHP 8.4 安装和升级指南 适用于 Ubuntu 和 Debian 的 PHP 8.4 安装和升级指南 Dec 24, 2024 pm 04:42 PM

PHP 8.4 带来了多项新功能、安全性改进和性能改进,同时弃用和删除了大量功能。 本指南介绍了如何在 Ubuntu、Debian 或其衍生版本上安装 PHP 8.4 或升级到 PHP 8.4

CakePHP 日期和时间 CakePHP 日期和时间 Sep 10, 2024 pm 05:27 PM

为了在 cakephp4 中处理日期和时间,我们将使用可用的 FrozenTime 类。

CakePHP 文件上传 CakePHP 文件上传 Sep 10, 2024 pm 05:27 PM

为了进行文件上传,我们将使用表单助手。这是文件上传的示例。

CakePHP 路由 CakePHP 路由 Sep 10, 2024 pm 05:25 PM

在本章中,我们将学习以下与路由相关的主题?

讨论 CakePHP 讨论 CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP 是 PHP 的开源框架。它的目的是使应用程序的开发、部署和维护变得更加容易。 CakePHP 基于类似 MVC 的架构,功能强大且易于掌握。模型、视图和控制器 gu

如何设置 Visual Studio Code (VS Code) 进行 PHP 开发 如何设置 Visual Studio Code (VS Code) 进行 PHP 开发 Dec 20, 2024 am 11:31 AM

Visual Studio Code,也称为 VS Code,是一个免费的源代码编辑器 - 或集成开发环境 (IDE) - 可用于所有主要操作系统。 VS Code 拥有针对多种编程语言的大量扩展,可以轻松编写

CakePHP 创建验证器 CakePHP 创建验证器 Sep 10, 2024 pm 05:26 PM

可以通过在控制器中添加以下两行来创建验证器。

See all articles