thinkphp控制器调度使用示例
1.如何通过地址栏参数来得到模块名称和控制器名称(即使在有路由和开了重写模块的情况下)
2.tp是如何实现前置,后置方法功能模块,和如何执行带参数的方法?
php系统自带的 reflectionclass,reflectionmethod 类,可以反射用户自定义类的中属性,方法的权限和参数等信息,通过这些信息可以准确的控制方法的执行
reflectionclass主要用的方法:
hasmethod(string) 是否存在某个方法
getmethod(string) 获取方法
reflectionmethod 主要方法:
getnumberofparameters() 获取参数个数
getparamters() 获取参数信息
3.代码演示
<?php
class indexaction{
public function index(){
echo 'index'."\r\n";
}
public function test($year=2012,$month=2,$day=21){
echo $year.'--------'.$month.'-----------'.$day."\r\n";
}
public function _before_index(){
echo __function__."\r\n";
}
public function _after_index(){
echo __function__."\r\n";
}
}
//执行index方法
$method = new reflectionmethod('indexaction','index');
//进行权限判断
if($method->ispublic()){
$class = new reflectionclass('indexaction');
//执行前置方法
if($class->hasmethod('_before_index')){
$beforemethod = $class->getmethod('_before_index');
if($beforemethod->ispublic()){
$beforemethod->invoke(new indexaction);
}
}
$method->invoke(new indexaction);
//执行后置方法
if($class->hasmethod('_after_index')){
$beforemethod = $class->getmethod('_after_index');
if($beforemethod->ispublic()){
$beforemethod->invoke(new indexaction);
}
}
}
//执行带参数的方法
$method = new reflectionmethod('indexaction','test');
$params = $method->getparameters();
foreach($params as $param ){
$paramname = $param->getname();
if(isset($_request[$paramname]))
$args[] = $_request[$paramname];
elseif($param->isdefaultvalueavailable())
$args[] = $param->getdefaultvalue();
}
if(count($args)==$method->getnumberofparameters())
$method->invokeargs(new indexaction,$args);
else
echo 'parameters is not match!';
推荐阅读
-
YII2框架中使用RBAC对模块,控制器,方法的权限控制及规则的使用示例
-
ThinkPHP5框架中使用JWT的方法示例
-
TP(thinkPHP)框架多层控制器和多级控制器的使用示例
-
thinkPHP框架中layer.js的封装与使用方法示例
-
thinkPHP5.1框架使用SemanticUI实现分页功能示例
-
ThinkPHP5&5.1实现验证码的生成、使用及点击刷新功能示例
-
Angular外部使用js调用Angular控制器中的函数方法或变量用法示例
-
thinkphp5使用bootstrapvalidator进行异步验证邮箱的示例
-
Yii2使用驼峰命名的形式访问控制器的示例代码
-
thinkphp控制器调度使用示例