时间:2021-07-01 10:21:17 帮助过:4人阅读
有什么用
可以帮助我们构建复杂的,可扩的运用。比如自动加载插件,自动生成文档等
代码示例
该示例为一个通用API入口
HttpApi.php
namespace twinkle\service\http; class HttpApi { private $class; public function __construct($class) { $this->class = $class; } public function parseRequest($method,$params = []) { $class = new \ReflectionClass($this->class); $instance = $class->newInstanceArgs($params); $method = $class->getMethod($method); $args = []; foreach ($method->getParameters() as $param) { $name = $param->getName(); if (isset($params[$name])) { $args[$name] = $params[$name]; } else { try { $args[$name] = $param->getDefaultValue(); } catch (\Exception $e) { throw new RequestException( '请求参数不合未能', 500 ); } } } return [$instance,$method,$args]; } }
NotFoundService.php
namespace app\services; use app\base\Service; class NotFoundService extends Service { public function error() { return $this->format(['status' => 1, 'msg' => '请求不合法,请确认service和method是否存在']); } }
使用范例
$params = $_REQUEST; $serviceName= isset($params['service']) ? $params['service'] : 'NotFound'; $methodName= isset($params['method']) ? $params['method'] : 'error'; $class = '\\app\\services\\' . Str::ucWords($serviceName) . 'Service'; list($instance, $method, $args) = (new HttpApi($class))->parseRequest($methodName, $params); echo json_encode(($method->invokeArgs($instance, $args)));
相关推荐:
PHP的反射与自动加载
PHP通过反射从而获取一个类中所有的方法讲解
php中反射如何获取一个类中的方法详解
以上就是PHP高级特性之反射实例解析的详细内容,更多请关注Gxl网其它相关文章!