本文实例讲述了thinkPHP控制器变量在模板中的显示方法。分享给大家供大家参考,具体如下:
控制器中变量
assign("type",$type);
//q全部部门
$depart1 = M("Depart") -> where("status=1 and fid=0") -> order("id asc") -> select();
$this -> assign("depart1",$depart1);
$this -> display();
}
模板中引用位置一:
PHP代码中,直接用$i;
PHP;">
echo $i;
PHP
模板中引用位置二:
模板中直接应用{$i}
或者 class="{$unlogined}"
PHP;">
注册。{$i}
$logined = is_array($_SESSION['userInfo']) ? "" : "hide-div";
$unlogined = $logined == "hide-div" ? "" : "hide-div";
模板中引用位置三:
模板标签中用,如condition中用,不加{}。PHP;">
-----请先选择一级部门-----
-----请先选择二级部门-----
更多关于thinkPHP相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》、《》及《PHP模板技术总结》。
原文链接:https://www.f2er.com/thinkphp/16202.html