Is it considered best practice to use filter_var() and sanitize_var() offered by PHP to filter and sanitize variables, or are there better options?

Thank you.

link|improve this question

1  
Sanitizing for what purpose? – Oli Charlesworth Aug 24 '11 at 20:23
it all depends, I use multiple different ways depending on the particular circumstances. – Dagon Aug 24 '11 at 20:26
best to use the built-in versions if possible, rather than rolling your own. – Marc B Aug 24 '11 at 20:26
Oli: Generally speaking. If there was need to sanitize input, would that be how it's done? – Francisc Aug 24 '11 at 20:42
thee is no generally(different approaches for db, txt file, form, screen out put, xml etc.), how hard is it to just explain the context – Dagon Aug 24 '11 at 20:56
show 3 more comments
feedback

2 Answers

I would always consider the following mantra... "Never trust user input" ctype_alpha, ctype_alnum are good performers for validation also and remember to validate client side as well (javascript validation), this will help reduce server load as well

link|improve this answer
1  
Client side validation is no replacement for server side validation. You need at the very least to validate on the server, the client validation is nice for usability and reducing the load on the server as mentioned, but it can be easily bypassed, so careful with it. – Marius Burz Aug 24 '11 at 21:20
Are you saying: "Use ctype_alpha instead of filter_string because it's a better practice" or you're saying that I can also use other options, which is not what I am asking. Thanks. – Francisc Aug 25 '11 at 19:10
feedback

I'd like to mention HTML Purifier for any HTML filtering / clean-up.

For generic validation (numeric, date and other values) there are plenty of libraries out there, there are also built in functions, it's your choice to pick the most appropriate, but I'd still like to mention Zend_Validate if you already use Zend Framework.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.