Documentación GVHIDRA 3.1.5
Referencia del Archivo modifier.strip_tags.php

Ir al código fuente de este archivo.

Namespaces

namespace  Smarty

Funciones

 smarty_modifier_strip_tags ($string, $replace_with_space=true)

Documentación de las funciones

smarty_modifier_strip_tags ( string,
replace_with_space = true 
)

Smarty strip_tags modifier plugin

Type: modifier
Name: strip_tags
Purpose: strip html tags from text strip_tags (Smarty online manual) Monte Ohrt

Parámetros:
string
boolean
Devuelve:
string

Definición en la línea 22 del archivo modifier.strip_tags.php.

{
    if ($replace_with_space)
        return preg_replace('!<[^>]*?>!', ' ', $string);
    else
        return strip_tags($string);
}