Blogger Information
Blog 28
fans 0
comment 0
visits 21989
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php:服务容器,facade与路由
暝皑祯π_π
Original
923 people have browsed it

服务容器

  1. <?php
  2. // 类1
  3. class Model1
  4. {
  5. public function model()
  6. {
  7. return __FILE__;
  8. }
  9. }
  10. // 类2
  11. class View1
  12. {
  13. public function view()
  14. {
  15. return __CLASS__;
  16. }
  17. }
  18. // 服务容器
  19. class Controller
  20. {
  21. // 装对象的容器
  22. protected $instances = [];
  23. // 绑定对象的方法:向对象容器中添加一个类实例
  24. // $alias:要添加的对象
  25. // \Closure:类型约束,闭包
  26. // $process:实列化的过程
  27. public function bank($alias, \Closure $process)
  28. {
  29. // 实列化对象
  30. $this->instances[$alias] = $process;
  31. }
  32. // 取出对象的方法
  33. // $alias:要取出的对象
  34. // $params = []:构造函数所使用的参数,以数组的形式传递
  35. public function make($alias,$params = [])
  36. {
  37. return call_user_func_array($this->instances[$alias],[]);
  38. }
  39. // 销毁对象的方法
  40. // $alias:要销毁对象
  41. public function unset($alias)
  42. {
  43. unset($this->instances[$alias]);
  44. }
  45. }
  46. $facade = new Controller;
  47. // 绑定方法
  48. $facade->bank('model',function(){return new Model1;});
  49. $facade->bank('view',function(){return new view1;});
  50. // 控制器
  51. class Controller1
  52. {
  53. // 把服务容器的实列化当成参数传递给控制器中方法
  54. // facade:类型限定
  55. // $facade:服务容器的实列化
  56. public function index(controller $facade)
  57. {
  58. return $facade->make('model')->model();
  59. }
  60. }
  61. // 客户端
  62. $controllers = new Controller1;
  63. echo $controllers->index($facade);

facade

  1. <?php
  2. // 类1
  3. class Model1
  4. {
  5. public function model()
  6. {
  7. return __FILE__;
  8. }
  9. }
  10. // 类2
  11. class View1
  12. {
  13. public function view()
  14. {
  15. return __CLASS__;
  16. }
  17. }
  18. // 服务容器
  19. class Controller
  20. {
  21. // 装对象的容器
  22. protected $instances = [];
  23. // 绑定对象的方法:向对象容器中添加一个类实例
  24. // $alias:要添加的对象
  25. // \Closure:类型约束,闭包
  26. // $process:实列化的过程
  27. public function bank($alias, \Closure $process)
  28. {
  29. // 实列化对象
  30. $this->instances[$alias] = $process;
  31. }
  32. // 取出对象的方法
  33. // $alias:要取出的对象
  34. // $params = []:构造函数所使用的参数,以数组的形式传递
  35. public function make($alias,$params = [])
  36. {
  37. return call_user_func_array($this->instances[$alias],[]);
  38. }
  39. // 销毁对象的方法
  40. // $alias:要销毁对象
  41. public function unset($alias)
  42. {
  43. unset($this->instances[$alias]);
  44. }
  45. }
  46. $controller = new Controller;
  47. // 绑定方法
  48. $controller->bank('model',function(){return new Model1;});
  49. $controller->bank('view',function(){return new view1;});
  50. // 4. Facade门面技术: 可以接管对容器中的对象的访问
  51. class Facade
  52. {
  53. // 服务容器实例属性
  54. protected static $containers = null;
  55. // 数据
  56. protected static $data = [];
  57. // 初始化方法
  58. // 初始化方法: 从外部接收一个依赖对象: 服务容器的实例
  59. // $container:服务容器的实例
  60. public static function initialize(controller $controller)
  61. {
  62. static::$containers = $controller;
  63. }
  64. public static function make()
  65. {
  66. static::$data = static::$containers->make('model')->model();
  67. }
  68. public static function view()
  69. {
  70. return static::$data = static::$containers->make('view')->view(static::$data);
  71. }
  72. }
  73. // 控制器
  74. class Controller1
  75. {
  76. // 构造方法: 调用门面的初始化方法
  77. public function __construct(controller $controller)
  78. {
  79. Facade::initialize($controller);
  80. }
  81. public function index()
  82. {
  83. return facade::view();
  84. }
  85. }
  86. // 客户端
  87. $controllers = new Controller1($controller);
  88. echo $controllers->index();

路由

  1. <?php
  2. // $_SERVER['QUERY_STRING']:查询字符串/URL/查询变量/GET变量
  3. // ?action=edit&id=19&name=admin
  4. // $_SERVER['PATH_INFO']:路径变量
  5. // /user/getuser/id/200/name/admin
  6. // 通过PATHINFO,解析url中控制器和方法
  7. http://php.cn/php/0514/routs.php/user/getuser?id=200&name=adname
  8. class user
  9. {
  10. public function getUser($id, $name)
  11. {
  12. return "id ==> $id, name ==> $name";
  13. }
  14. }
  15. // 1. 解析出PATHINFO
  16. // explode():把字符串分解为数组
  17. // array_filter():过滤数组的空元素
  18. // array_values():将数组中只从新排列
  19. $pathinfo = array_values(array_filter( explode('/' , $_SERVER['PATH_INFO'])));
  20. // print_r($pathinfo) ;
  21. // 2. 解析控制器
  22. // ucfirst():首字母转为大写
  23. $controller = ucfirst($pathinfo[0]);
  24. // echo $controller;
  25. // 3. 解析控制器中的方法
  26. $action = $pathinfo[1];
  27. // echo $action;
  28. // 4. 解析参数:返回值是数组
  29. // $_SERVER['QUERY_STRING']:获取url后面的参数以及值的
  30. // parse_str():把查询字符串解析到变量中:参数1:查询字符串,参数2:变量
  31. parse_str($_SERVER['QUERY_STRING'],$params);
  32. // print_r($params);
  33. // 5. 调用控制器方法
  34. $user = new $controller();
  35. // 解构变量
  36. echo $user->$action(...array_values($params));

总结

  • 服务容器:通过把模型类实例和试图类实例放在服务容器中减少对外部对象的依赖。
  • facade:静态化服务容器中的方法,使客户端代码更加简洁
  • 路由原理:将URL中的控制器,方法解析出来,映射到对应的控制器类和方法上
Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:原理明白, 能写点东西了
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post