News新闻

业界新闻动态、技术前沿
Who are we?

您的位置:首页      乐道系统FAQ      thinkPHP控制器变量在模板中的显示方法示例

thinkPHP控制器变量在模板中的显示方法示例

发布日期:2018-04-18 21:57:58 244

本文实例讲述了thinkPHP控制器变量在模板中的显示方法。分享给大家供大家参考,具体如下:

控制器中变量

public function register() {
  $type = I("param.type");//1.学生注册 2.教师注册 3.其他注册
  $this -> assign("type", $type);
    //q全部部门
  $depart1 = M("Depart") -> where("status=1 and fid=0") -> order("id asc") -> select();
  $this -> assign("depart1", $depart1);
  $this -> display();
}