如果你对该文章中的内容有疑问/不解,可以点击此处链接提问
要注明问题和此文章链接地址 点击此处跳转
include $this->template('index');
写在前台方法里寻找的目录:/Addons/xxx/template/mobile/index.html
写在后台方法里寻找的目录:/Addons/xxx/template/index.html
变量的赋值
定义:
$name="王明昌博客";
输出变量:
{$name}
循环
定义:
$arr = [1,2,3,'f'];
使用:
{loop $arr $index $v}
{$v}
{/loop}
判断
{if}{else}{/if}
php代码
{php $a=$a+1}
创建url
<a href="{php echo $this->createMobileUrl('xx')}"></a>
调用模版
{template 'header'}