本文實例講述了PHP模板引擎Smarty內建變數調解器用法。分享給大家供大家參考,具體如下:
Smarty 中的變數調解器相當於函數,其呼叫方式為:透過"|" 後面直接跟調解函數名,如果有參數,得加在":" 後面,多個參數的話,累加即可。
下面為您介紹 Smarty 中內建的變數調解器:
1、capitalize
將變數裡的所有單字首字大寫。參數值 boolean 型決定帶數字的單字,首字是否大寫。預設不大寫
index.php
$tpl->assign('str', 'hello world wor2ld!!!'); $tpl->display('index.html');
index.html(範本檔案)
<{$str|capitalize}> <{$str|capitalize:true}>
結果為:Hello World wor2ld!!!、 Hello World Wor2Ld!!!
2、count_characters
,此調解器預設不計算空格(空格、製表符、回車…)只計算字元的個數,並且能很好的支援中文字元計算;如果新增參數true ,則計算空格。 index.html<{$str|count_characters}> // 不计算空格 <{$str|count_characters:true}> // 计算空格
<{$str|cat:' Happy new year.'}>
$str = <<assign('str', $str); $tpl->display('index.html');
<{$str|count_paragraphs}>
$str = <<assign('str', $str);
<{$str|count_sentences}>
$str = <<assign('str', $str);
<{$str|count_words}>
$tpl->assign('date', time()); // 传递时间戳
<{$date|date_format:'%Y-%m-%d %H:%M:%S'}>
$tpl->assign('str', ''); // 赋值给空
<{$str|default:'默认输出...'}>、<{$string|default:'没有定义,默认输出...'}>
$html = <<Google html; $js = << for (var i=0; i<100; i++) { window.alert(i); } js; $tpl->assign('html', $html); // html $tpl->assign('url', 'http://www.google.com.hk'); // url $tpl->assign('js', $js); // javascript
HTML 转码:<{$html|escape:"html"}> URL 转码:<{$url|escape:"url"}> JS 转码:<{$js|escape:"javascript"}>
HTML 转码:Google URL 转码:http%3A%2F%2Fwww.google.com.hk JS 转码:
$tpl->assign('str', 'http://www.google.com');
<{$str|regex_replace:'/go{2}gle/':'baidu'}>
$tpl->assign('str', 'hello world!!!');
<{$str|spacify:"^^"}>
^^^^ ^l^^d^^!^^!^^!
17、string_format
字串格式化,是一種格式化浮點數的方法,例如:十進制數.使用sprintf 語法格式化。
index.php
$tpl->assign('num', 23.5787446);
index.html
<{$num|string_format:"%.2f"}> <{$num|string_format:"%d"}>
、23.58、23383.單一
index. php
$tpl->assign('str', "Grandmother of\neight makes\t hole in one.");
index.html
<{$str|strip:" "}>
結果為:Grandmother of eightkes makes
hole in one.19、strip_tags去除在<和>之間的所有標籤,包括<和>。 index.php
$tpl->assign('str', "Google");
<{$str|strip_tags}>
截取,截取字符串开始的一段.默认是80个,你可以指定第二个参数作为在截取的那段字符串后加上什么字符,默认情况下,smarty会截取到一个词的末尾,如果你想要精确的截取多少个字符,把第三个参数改为"true" 。
index.php
$tpl->assign('str', '从前有座山,山上有座庙。庙里有一个老和尚和一个小和尚...');
index.html
<{$str|truncate:10:'...':true}>
结果为:从前有座山,山...
希望本文所述对大家基于smarty模板的PHP程序设计有所帮助。
更多PHP模板引擎Smarty内置变量调解器用法详解相关文章请关注PHP中文网!