本教程来源于网络 仅供参考
引入模版文件
引入/template/default目录下inc_head.html的写法 inc_head对应/template/default目录下inc_head.html模板文件
引入当前模板目录下的inc_head.html inc_head对应当前模板目录下的inc_head.html模{template inc_head}断/条件语法
普通if语句写法
{if $my_var}xxx{/if}
带有分支条件的 if
{if $my_var}xxx{else}xxx{/if}
重分支条件的 if 写法
{if $my_var}xxx{elseif}xxx{else}xxx{/if}
带有多条件的 if 写法,可使用 PHP 常规判断中的按位运算符
<code>{if empty($mymps_global['SiteName']) && $_GET['action'] == 'postinfo' && empty($_GET['act']) }</code>
任意 html 语句 {/if}
循环语法(可多重循环)
带有数组键的循环写法
不带数组键的循环写法
隔行输出的循环写法
双重嵌套的循环写法
直接执行php代码标签
单行执行php代码标签
多行执行php代码标签代码以{php}开始,{/php}结尾
直接输出php变量
直接输出php变量,效果等同于<code><?php echo $my_var; ?></code>