Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I noticed there are many things you can do with the PHP filter_var function which can also be done with other function.

For example, the filters FILTER_VALIDATE_REGEXP, FILTER_SANITIZE_ENCODED and many more also have their respective dedicated functions in PHP.

When should I use filter_var and when should I use the PHP functions? What are the advantages and disadvantages?

share|improve this question
1  
use php_filter anytime you can, it's build-in (little faster and you are sure you use the right validation), if you can't find what you need, then use a custom one. – Book Of Zeus Dec 14 '11 at 1:00
1  
I wasn't talking about custom functions, since built in function will always be faster. I was talking about filters which already have a native php function alternative. – Tiddo Dec 14 '11 at 1:08
I understand, but if you use a preg_match you will have to customize the regexp - I should have said, customized regexp with preg_match sorry about the confusion – Book Of Zeus Dec 14 '11 at 1:11
1  
but with FILTER_VALIDATE_REGEXP you should also customize the regexp. Of course using regexp to validate an email address is a lot slower than FILTER_VALIDATE_EMAIL! – Tiddo Dec 14 '11 at 1:15
@Tiddo: FILTER_VALIDATE_EMAIL uses a regex internally. github.com/php/php-src/blob/master/ext/filter/… – mario Dec 14 '11 at 1:24
show 1 more comment

3 Answers

up vote 3 down vote accepted

The advantage of the filter extension is that you have everything in one place.

But you are right, it doesn't provide much novel features. You could do most of the stuff with existing functions, in particular preg_replace or preg_match instead of FILTER_VALIDATE_REGEXP. Or typecasting, and using the normal htmlspecialchars instead of the filter option.

There is however filter_var_array, where one benefit becomes apparent. You can filter loads of variables per config. And you can predefine a list of filters to apply all at once:

$_POST = filter_var_array($_POST, array(
    "text" => FILTER_SANITIZE_ENCODED,
    "id" => FILTER_VALIDATE_INT,
    "title" => FILTER_SANITIZE_ENCODED,
));

I admit that's basically a triggered magic_quotes example, but you get the picture. Unification.

share|improve this answer

To this day I haven't found a faster (or better) way of removing special characters from a string than using filter_var

filter_var($string, FILTER_SANITIZE_STRING, FILTER_FLAG_STRIP_HIGH)

Like many things in PHP, there are multiple ways of doing them. filter_var is convenient.

share|improve this answer
Does this hold for every filter_var function which has another built-in equivalent? Or is this only for this filter? – Tiddo Dec 14 '11 at 1:16
Yes, well for string related versions. Take a look here, you'll see FILTER_FLAG_STRIP_HIGH applies to some – George P Dec 14 '11 at 1:20
Who would vote this down? why? – George P Dec 14 '11 at 1:37
Upvoted to compensate for the downvote. I think this is a valid and often overlooked solution. – cantera25 Feb 1 '12 at 8:55

Extending the answer given by mario on part where using filter_var() would mean you have everything in one place.

There is indeed one major disadvantage of massively relying on one function instead of using the dedicated functions.

Think about this: what if one day the PHP team decides to rearrange, change or rename the function filter_var()? Or not to mention to deprecate the function? Your application will have trouble upgrading to future versions.

Using their dedicated functions would mean if one function changes, you do not need to change so much in your application when upgrading to newer versions. PHP is known to be very volatile and that changes between versions can be very drastic.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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