這篇文章主要為大家展示了“smarty過濾器怎么用”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“smarty過濾器怎么用”這篇文章吧。
創(chuàng)新互聯(lián)建站是一家集網站建設,象山企業(yè)網站建設,象山品牌網站建設,網站定制,象山網站建設報價,網絡營銷,網絡優(yōu)化,象山網站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強企業(yè)競爭力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網需求。同時我們時刻保持專業(yè)、時尚、前沿,時刻以成就客戶成長自我,堅持不斷學習、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實用型網站。1、預過濾器
function remove_dw_comments($tpl_source, &$smarty) { return preg_replace("//U","",$tpl_source); //去除原tpl文件中的注釋,使其在編譯后的文件中不顯示 } //注冊預過濾器 $smarty->register_prefilter("remove_dw_comments"); $smarty->display("test1.tpl");
test1.tpl
2、后過濾器
function add_header_comment($tpl_source, &$smarty) { return "\n\" ?>\n".$tpl_source; //添加頭部注釋 } //注冊后過濾器 $smarty->register_postfilter("add_header_comment"); $smarty->display('test2.tpl');
模板文件:
test2.tpl
頭部會產生注釋:
3、輸出濾鏡
function protect_email($tpl_output, &$smarty){ $tpl_output = preg_replace('!(\S+)@([a-zA-Z0-9\.\-]+\.([a-zA-Z]{2,3}|[0-9]{1,3}))!', '$1%40$2', $tpl_output); return $tpl_output;}// register the outputfilter$smarty->register_outputfilter("protect_email"); $smarty->display("index.tpl"); } $smarty->register_outputfilter("protect_email"); $smarty->display("index.tpl");
以上是“smarty過濾器怎么用”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道!