Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Robert Basic's Blog:
Data filtering with PHP's Filter extension
Dec 16, 2008 @ 17:17:44

Robert Basic has a new blog post looking at the filtering extension included with most PHP5 distributions.

Filter extension? Maybe it's nothing new for some of you, but it is for me. I've never heard of it before. So I quickly hopped over to PHP.net and the Filter chapter of the manual.

The filter extension (included as of PHP 5.2) helps clean up and validate user input - really any input - like number matching, regular expressions and email addresses. He includes some examples of filtering strings, email and integers as well as ways to sanitize the same strings, ensuring they are valid and clean values.

tagged: filter extension tutorial php5 validate sanitize

Link:


Trending Topics: