Smarty Icon

You may use the Smarty logo according to the trademark notice.

Smarty Template Engine Smarty Template Engine

For sponsorship, advertising, news or other inquiries, contact us at:

Sites Using Smarty

Advertisement

strip

Ini mengganti semua spasi yang berulang, baris baru dan tab dengan spasi tunggal, atau dengan string yang disertakan.

Catatan: Jika anda ingin memotong blok teks template, gunakan fungsi built-in {strip}.

Teladan 5-19. strip

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

Di mana template adalah:

{$articleTitle}
{$articleTitle|strip}
{$articleTitle|strip:' '}

Akan memperlihatkan:

Grandmother of
eight makes        hole in one.
Grandmother of eight makes hole in one.
Grandmother of eight makes hole in one.

Lihat juga {strip} dan truncate.