KumbiaPHP  beta2
Framework PHP
 Todo Estructuras de Datos Namespaces Archivos Funciones Variables Páginas
htmlentities_filter.php
Ir a la documentación de este archivo.
1 <?php
30 {
31 
39  public static function execute($s, $options)
40  {
41  $charset = (isset($options['charset']) && $options['charset']) ? $options['charset'] : APP_CHARSET;
42  return htmlentities((string) $s, ENT_QUOTES, $charset);
43  }
44 
45 }