thinkphp3.2实现跨控制器调用其他模块的方法
程序员文章站
2024-03-13 15:22:03
本文实例讲述了thinkphp3.2实现跨控制器调用其他模块的方法。分享给大家供大家参考,具体如下:
thinphp中前台后台都有互相调用方法,这样可以省去重复内容。...
本文实例讲述了thinkphp3.2实现跨控制器调用其他模块的方法。分享给大家供大家参考,具体如下:
thinphp中前台后台都有互相调用方法,这样可以省去重复内容。
$hello = new \admin\common\fun\hello(); $hello->hehe();
调用其他地方的方法同理。
如果是在同控制器里模块名可以省略。
如调用common里面的某个类的方法:
$hello = new \common\fun\hello(); $hello->hehe();
框架里面提供了跨模块、夸控制器的 a() 方法
class goodscontroller extends controller{ function showlist(){ // 实例化user控制器与调用方法 $user = a('user');//通过快捷函数实例化控制器对象 echo $user->number();//调用number()方法 } }
调用示范:
a('user'); //跨控制器 a('admin/user'); //跨模块 a('shop://admin/user'); //跨项目
如果还是不够方便的话框架还提供了r()方法,实例化类并调用方法。
//user为控制器 number为方法 r('user/number'); r('admin/user/number'); r('shop://admin/user/number');
效果如下:
class goodscontroller extends controller{ function showlist(){ // 实例化user控制器与调用方法 a('user/number');//实例化user类并调用number方法 } }
更多关于thinkphp相关内容感兴趣的读者可查看本站专题:《thinkphp入门教程》、《thinkphp模板操作技巧总结》、《thinkphp常用方法总结》、《codeigniter入门教程》、《ci(codeigniter)框架进阶教程》、《zend framework框架入门教程》、《smarty模板入门基础教程》及《php模板技术总结》。
希望本文所述对大家基于thinkphp框架的php程序设计有所帮助。
推荐阅读
-
thinkphp3.2实现跨控制器调用其他模块的方法
-
thinkphp3.2实现跨控制器调用其他模块的方法
-
thinkphp隐藏index.php/home并允许访问其他模块的实现方法
-
ThinkPHP实现跨模块调用操作方法概述_PHP教程
-
PHPCMS如下代码,想在指定位置调用content模块content控制器下的add()方法提交数据,如何实现?
-
thinkphp3.2实现上传图片的控制器方法,_PHP教程
-
ThinkPHP控制器间实现相互调用的方法,thinkphp控制器_PHP教程
-
ThinkPHP实现跨模块调用操作方法概述
-
PHPCMS如下代码,想在指定位置调用content模块content控制器下的add()方法提交数据,如何实现?
-
ThinkPHP控制器间实现相互调用的方法_PHP