当前位置:首页 > CMS教程 > Thinkphp > 列表

thinkPHP基于反射实现钩子的方法分析

发布:smiling 来源: PHP粉丝网  添加日期:2021-08-20 11:35:33 浏览: 评论:0 

这篇文章主要介绍了thinkPHP基于反射实现钩子的方法,结合实例形式分析了php基于系统自带的ReflectionClass、ReflectionMethod 类与函数实现钩子功能的相关操作技巧,需要的朋友可以参考下。

本文实例讲述了thinkPHP基于反射实现钩子的方法,分享给大家供大家参考,具体如下:

ThinkPHP框架的控制器模块是如何实现 前控制器、后控制器,及如何执行带参数的方法?

PHP系统自带的 ReflectionClass、ReflectionMethod 类,可以反射用户自定义类的中属性,方法的权限和参数等信息,通过这些信息可以准确的控制方法的执行。

ReflectionClass:

主要用的方法:

hasMethod(string)  是否存在某个方法

getMethod(string)  获取方法

ReflectionMethod:

主要方法:

isPublic()    是否为 public 方法

getNumberOfParameters()  获取参数个数

getParamters()  获取参数信息

invoke( object $object [, mixed $parameter [, mixed $... ]] ) 执行方法

invokeArgs(object obj, array args)  带参数执行方法

实例演示

  1. <?php 
  2. class BlogAction { 
  3.   public function detail() { 
  4.     echo 'detail' . "\r\n"
  5.   } 
  6.   public function test($year = 2014, $month = 4, $day = 21) { 
  7.     echo $year . '--' . $month . '--' . $day . "\r\n"
  8.   } 
  9.   public function _before_detail() { 
  10.     echo __FUNCTION__ . "\r\n"
  11.   } 
  12.   public function _after_detail() { 
  13.     echo __FUNCTION__ . "\r\n"
  14.   } 
  15. // 执行detail方法 
  16. $method = new ReflectionMethod('BlogAction''detail'); 
  17. $instance = new BlogAction(); 
  18. // 进行权限判断 
  19. if ($method->isPublic()) { 
  20.   $class = new ReflectionClass('BlogAction'); 
  21.   // 执行前置方法 
  22.   if ($class->hasMethod('_before_detail')) { 
  23.     $beforeMethod = $class->getMethod('_before_detail'); 
  24.     if ($beforeMethod->isPublic()) { 
  25.       $beforeMethod->invoke($instance); 
  26.     } 
  27.   } 
  28.   $method->invoke(new BlogAction); 
  29.   // 执行后置方法 
  30.   if ($class->hasMethod('_after_detail')) { 
  31.     $beforeMethod = $class->getMethod('_after_detail'); 
  32.     if ($beforeMethod->isPublic()) { 
  33.       $beforeMethod->invoke($instance); 
  34.     } 
  35.   } 
  36. // 执行带参数的方法 
  37. $method = new ReflectionMethod('BlogAction''test'); 
  38. $params = $method->getParameters(); 
  39. foreach ($params as $param) { 
  40.   $paramName = $param->getName(); 
  41.   if (isset($_REQUEST[$paramName])) { 
  42.     $args[] = $_REQUEST[$paramName]; 
  43.   } elseif ($param->isDefaultValueAvailable()) { 
  44.     $args[] = $param->getDefaultValue(); 
  45.   } 
  46. if (count($args) == $method->getNumberOfParameters()) { 
  47.   $method->invokeArgs($instance$args); 
  48. else { 
  49.   echo 'parameters is wrong!'

另一段代码参考

  1. /** 
  2.  * 执行App控制器 
  3.  */ 
  4. public function execApp() { 
  5.   // 创建action控制器实例 
  6.   $className = MODULE_NAME . 'Controller'
  7.   $namespaceClassName = '\\apps\\' . APP_NAME . '\\controller\\' . $className
  8.   load_class($namespaceClassName, false); 
  9.   if (!class_exists($namespaceClassName)) { 
  10.     throw new \Exception('Oops! Module not found : ' . $namespaceClassName); 
  11.   } 
  12.   $controller = new $namespaceClassName(); 
  13.   // 获取当前操作名 
  14.   $action = ACTION_NAME; 
  15.   // 执行当前操作 
  16.   //call_user_func(array(&$controller, $action)); // 其实吧,用这个函数足够啦!!! 
  17.   try { 
  18.     $methodInfo = new \ReflectionMethod($namespaceClassName$action); 
  19.     if ($methodInfo->isPublic() && !$methodInfo->isStatic()) { 
  20.       $methodInfo->invoke($controller); 
  21.     } else { // 操作方法不是public类型,抛出异常 
  22.       throw new \ReflectionException(); 
  23.     } 
  24.   } catch (\ReflectionException $e) { 
  25.     // 方法调用发生异常后,引导到__call方法处理 
  26.     $methodInfo = new \ReflectionMethod($namespaceClassName'__call'); 
  27.     $methodInfo->invokeArgs($controllerarray($action'')); 
  28.   } 
  29.   return
  30. }

Tags: thinkPHP反射钩子

分享到: