Smarty:strip

2018-10-12 15:43 更新

strip

轉(zhuǎn)換連續(xù)空格,回車和tab到單個(gè)空格或是指定字符串。

說明

如果你希望轉(zhuǎn)換模板文字內(nèi)的空格,使用內(nèi)置的 {strip} 函數(shù)。

Example 5.19. strip

<?php
$smarty->assign('articleTitle', "Grandmother of\neight makes\t    hole in one.");
$smarty->display('index.tpl');
?>

模板:

{$articleTitle}
{$articleTitle|strip}
{$articleTitle|strip:'&nbsp;'}

輸出:

Grandmother of
eight makes        hole in one.
Grandmother of eight makes hole in one.
Grandmother&nbsp;of&nbsp;eight&nbsp;makes&nbsp;hole&nbsp;in&nbsp;one.

參見 {strip} 和 truncate.


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)