Skip to content

Commit

Permalink
New translations filter.md (Spanish)
Browse files Browse the repository at this point in the history
  • Loading branch information
niden committed Mar 3, 2018
1 parent a46c8dd commit 72b6b82
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions es/filter.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,18 +56,18 @@ Los siguientes filtros están incorporados en este componente:
| Nombre | Descripción |
| ------------- | ----------------------------------------------------------------------------------------------------------------------- |
| string | Elimina etiquetas y codifica entidades HTML, incluyendo comillas simples y dobles |
| email | Quita todos los caracteres excepto letras, números y `` !#$%&*+-/=?^_{\|}~@.[]` `` |
| email | Remove all characters except letters, digits and ``!#$%&*+-/=?^_`{\|}~@.[]`` |
| int | Quita todos los caracteres excepto dígitos y los signos más y menos |
| int! | Convertir el valor en un valor entero utilizando la función [intval](http://php.net/manual/en/function.intval.php) |
| absint | Obtiene el valor absoluto de un valor que fue convertido a entero |
| float | Quita todos los caracteres excepto dígitos, puntos y los signos más y menos |
| float! | Convertir el valor en un valor `float` utilizando la función [floatval](http://php.net/manual/en/function.floatval.php) |
| alphanum | Quita todos los caracteres excepto [a-zA-Z0-9] |
| striptags | Se aplica la función [strip_tags](http://www.php.net/manual/en/function.strip-tags.php) |
| special_chars | Escapar los caracteres `'"<>&` y caracteres con valor ASCII menor a 32 |
| special_chars | Escape `'"<>&` and characters with ASCII value less than 32 |
| trim | Se aplica la función [trim](http://www.php.net/manual/en/function.trim.php) |
| lower | Se aplica la función [strtolower](http://www.php.net/manual/en/function.strtolower.php) |
| url | Quita todos los caracteres letras, dígitos y `` `|$-_.+!*'(),{}[]<>#%";/?:@&=.^~\\ `` |
| url | Remove all characters except letters, digits and ``&#124;$`-_.+!*'(),{}[]<>#%";/?:@&=.^\\~`` |
| upper | Se aplica la función [strtoupper](http://www.php.net/manual/en/function.strtoupper.php) |

<a name='sanitizing'></a>
Expand Down

0 comments on commit 72b6b82

Please sign in to comment.