![]() |
Documentación GVHIDRA 3.1.5
|
Ir al código fuente de este archivo.
Namespaces | |
namespace | Smarty |
Funciones | |
smarty_modifier_strip_tags ($string, $replace_with_space=true) |
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
string | |
boolean |
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); }