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_tags

Posizione del Parametro Tipo Obbligatorio Default Descrizione
1 booleano No true Stabilisce se i tag saranno sostituiti con ' ' (true) o con '' (false)

Questo elimina i tag di markup, cioè fondamentalmente qualsiasi cosa compresa fra < and >.

Example 5.19. strip_tags


<?php

$smarty = new Smarty;
$smarty->assign('articleTitle', "Blind Woman Gets <font face=\"helvetica\">New
Kidney</font> from Dad she Hasn't Seen in <b>years</b>.");
$smarty->display('index.tpl');

?>

   

Dove index.tpl è:


{$articleTitle}
{$articleTitle|strip_tags} {* equivale a {$articleTitle|strip_tags:true} *}
{$articleTitle|strip_tags:false}

   

Questo stamperà:


Blind Woman Gets <font face="helvetica">New Kidney</font> from Dad she Hasn't Seen in <b>years</b>.
Blind Woman Gets  New Kidney  from Dad she Hasn't Seen in  years .
Blind Woman Gets New Kidney from Dad she Hasn't Seen in years.