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.
|
Is it considered best practice to use Thank you.
| |||||||||||||
feedback
|
|
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 | |||||||
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. | |||
|
feedback
|