首页 > 代码库 > A函数跨区域
A函数跨区域
ODerController.class.php内容如下
1 <?php 2 3 /* 4 * To change this license header, choose License Headers in Project Properties. 5 * To change this template file, choose Tools | Templates 6 * and open the template in the editor. 7 */ 8 9 namespace Home\Controller; 10 use Think\Controller; 11 class ODerController extends Controller{ 12 //未付款的信息 13 public function gwc(){ 14 echo dddd; 15 } 16 }
UserController.class.php内容如下:
1 <?php 2 3 /* 4 * To change this license header, choose License Headers in Project Properties. 5 * To change this template file, choose Tools | Templates 6 * and open the template in the editor. 7 */ 8 9 10 11 namespace Home\Controller; 12 use Think\Controller; 13 class UserController extends Controller{ 14 15 public function info(){ 16 // echo ‘5555‘; 17 /* 18 * 跨控制器调用,现在是自己在调用 19 20 $order = new \Home\Controller\ODerController(); 21 $order->gwc(); 22 */ 23 24 /*跨控制器调用,使用A()函数 25 $order=A(‘Home/ODer‘); 26 *dump();tp系统函数,开发小组自己用的,带有格式的输出 27 *dump($order); 28 * $order->gwc(); 29 */ 30 } 31 }
备注:
A函数
作用:实例化控制器的一个快捷函数
格式:A(模板/控制器,[控制器层名称]);
跨控制器调用
本次练习是在ThinkPHP_3.2_140202下操作的
A函数跨区域
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。