Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to build up a php if statement with or "||" operators but doesn't seems to work

   $country_code ="example_country_code";

   if ( $country_code != 'example_country_code' || !clientIscrawler()) {
            echo 'the script can be executed';
   }
   else {   
     echo 'skipping';
   }

with the given example should be echoed skipping but doesn't happening like that. What I'm doing wrong?

share|improve this question
And why should it echo 'skipping'? Definitely not because of the country code. – Jon Nov 15 '12 at 14:17
What value is the value returned by clientIscrawler()? – Michael Berkowski Nov 15 '12 at 14:18
what you get by var_dump(!clientIscrawler()); ? – Dev Nov 15 '12 at 14:18
!clientIscrawler() is returning 1 or 0 – kakuki Nov 15 '12 at 14:19
try 0 === clientIscrawler() – silly Nov 15 '12 at 14:20
show 4 more comments

4 Answers

up vote 0 down vote accepted

Perhaps the double negatives is giving you problems, let's rewrite it to:

!($country_code == 'example_country_code') || !clientIscrawler()

This can be turned into an equivalent condition with &&:

!($country_code == 'example_country_code' && clientIscrawler())

By reversing the if you would get this:

if ($country_code == 'example_country_code' && clientIscrawler()) {
    echo 'skipping';
} else {
    echo 'the script can be executed';
}

Therefore, in your code, it will only print skipping if clientIscrawler() is truthy.

share|improve this answer
thanks a lot I have been changing a bit and seems to work !($country_code == 'example' || $country_code == 'example2' || clientIscrawler()) – kakuki Nov 15 '12 at 14:43

In your given code all its depend on youer function call

 !clientIscrawler()

You will be getting the script can be executed output only when yur function call will return FALSE. I think it is returning TRUE right now that's why you are not getting the desired output.

share|improve this answer

Maybe this can help you:

if ( ($country_code != 'example_country_code') || clientIscrawler() == false) {
share|improve this answer

Try this way:

if ( ($country_code != 'example_country_code') || !clientIscrawler()) { ...
share|improve this answer
what's the point ? – Dev Nov 15 '12 at 14:19
this is the same – silly Nov 15 '12 at 14:20

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.