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

Posición del Parametro Tipo Requerido Default descripción
1 bool No true Este determina cuando las etiquetas seran remplazadas por ' ' o por ''

Este retira las etiquetas de marcación, basicamente todo entre < y >.

Example 5.19. strip_tags


<?php

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

?>

   

Donde index.tpl es:


{$articleTitle}
{$articleTitle|strip_tags} {* same as {$articleTitle|strip_tags:true} *} 
{$articleTitle|strip_tags:false}

   

Esta es la Salida:


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.