笔记--ThinkPHP模板的变量使用与运算以及模板函数调用

模板:

index.html




    
    Title


This is the test index p11age!
{$me['name']}

{$me.name}
{$me['sex']|default='girl'} {//$me.age-1 //这种点号的方式不能正确计算,如果需要计算要用下面这种} {$me['age']-1}
{$me['name']|md5|substr=0,5}
{$now}
{$now|date='Y-m-d H:i:s',###}
{$Think.now}
{$Think.version}
{$Think.server.http_host}
Action(control):

IndexAction.class.php

assign('me',$me);
        $this->now = time();
        $this->display();
    }
}



你可能感兴趣的:(ThinkPHP)