-
在模板中建议使用原生php标签 <php></php>查看全部
-
模板中区间判断 in notin between notbetween range <in name='num' value='1,2,4'>num 在里面</in> <range name='num' value='1,10' type='in'>num在里面</range> 只能替换in notin <betweent name='num' value='1,10'>num在这个区间内</between>查看全部
-
在模板中使用比较标签 <比较标签 name='变量名' value='比较值'></比较标签> <eq name='num' value='10'> num = 10</eq> <neq name='num' value='10'>num != 10 </neq> 联合写 <eq name='num' value='10'> num = 10 <else/> num != 10</eq> 或者 <compare name='num' value='10' type='eq'> num = 10 <else/> num != 10</compare>查看全部
-
模板中使用switch 标签,default 注意 / <switch name='name'> <case value='pingguo'>我不爱吃</case> <case value='hongzao|putao'>我爱吃</case> <default/> 其他的视情况而定 </switch>查看全部
-
在模板中使用IF,一定要注意elseif 和 else 后面的结束 / <if condition='$num lt 10'> num小于10 <elseif condition='$num gt 10/> num 大于 10 <else/> num 等于 10 </if>查看全部
-
模板中使用for循环 eq = neq != gt> egt>= lt < elt<= heq === nheq !== <for start='1' end='10' comparison='elt' name='k'> {$k}<br/> </for>查看全部
-
volist 和 foreach <volist name='students' id='student' offset='1' length='2' empty='我没有数据'> {$student['name']} ----- {$student['sex']} </volist> <foreach name='students' item='student'> {$student['name']} ---- {$student['sex]}</br> </foreach>查看全部
-
在模板中使用函数 {$me['name']|md5|substr=0,5} 在方法中原生态执行 $name = substr(md5($me['name']),0,5); 时间戳输出 $this->now = time(); 模板中 {$now|date='Y-m-d H:i:s',###} 模板中系统变量的输出 {$Think.server.http_host} 等查看全部
-
伪静态,便于搜索引擎爬到你! 通过设置 'URL_HTML_SUFFIX' => 'shtml|html|xml',查看全部
-
隐藏index.php 1.先到Apache 服务器的配置文件中找到 rewrite.so 将其对应的前面的 # 去掉 2.然后在index.php 同级目录下建立 .htaccess 文件,在里面重写一些Apache 服务器的规则(可以百度、google)查看全部
-
四种URL模式 0 普通模式 http://localhost/test/index.php?m=Index&a=index&id=1 1.PATHINFO模式 http://localhost/test/index.php/Index/index/id/1.html 2.重写模式 http://localhost/test/Index/index/id/1.html 3.兼容模式 http://localhost/test/index.php?s=/Index/index/id/1.html 建议使用PATHINFO模式 U方法 : 构造一个URL并返回 U('模块/方法',array('id' => 1),'xxxx html htm shtml',true/false,'localhost'); 可以在配置文件中更改URL 模式 'URL_MODEL' => 0/1/2/3查看全部
-
自定义配置文件 user.php <?php return array( 'sex' => 'man', ); 需要在config.php文件中对其进行加载! config.php <?php return array( 'name' => 'Qin', 'LOAD_EXT_CONFIG' => 'user', ); 自定义配置文件不会被项目编译,所以每次运行时会从新加载,不建议使用!查看全部
-
ThinkPHP运行流程查看全部
-
比较标签查看全部
-
比较标签查看全部
举报
0/150
提交
取消