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

前端之家收集整理的这篇文章主要介绍了thinkPHP控制器变量在模板中的显示方法示例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例讲述了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模板技术总结》。

希望本文所述对大家基于ThinkPHP框架的PHP程序设计有所帮助。

原文链接:https://www.f2er.com/thinkphp/16202.html

猜你在找的ThinkPHP相关文章