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.

Here's the condition -

if ($file !== "." || $file !== "..")

not working.

if (($file !== ".") || ($file !== ".."))

not working either.

if ($file !== ".")

works just fine. ' That really drives me edgy. I've read all that php.net has to offer on logical operators (http://php.net/manual/en/language.operators.logical.php), a bunch of crappy tutorials I googled up, and I triple-checked the operator precedence. From all points, either of ways should work.

What could be the reason?

share|improve this question
4  
I'd bet, what you actually want is: if ($file !== "." && $file !== "..") – Yoshi Jul 1 '11 at 9:44
Are you looking for the AND operator (&&)? As in "if file is not equal to this AND not equal to this"? – James Allardice Jul 1 '11 at 9:44
your checking like '!==' instead '!=', is it right? – deepi Jul 1 '11 at 9:45
2  
@deepi - !== is correct, it checks that the type of the variable is equal, not just the value. – James Allardice Jul 1 '11 at 9:46
@ James Allardice : OK, actually i don't know that, thanks for the information – deepi Jul 1 '11 at 9:47
show 1 more comment

3 Answers

up vote 10 down vote accepted

$file should not be . AND it should not be ..

if ($file !== "." && $file !== "..")

share|improve this answer
Yeah, my logic has failed me. Thanks. – Nordvind Jul 1 '11 at 9:49
Happens to me all the time ;-) – fire Jul 1 '11 at 11:07

The expressions:

if ( $file !== "."  ||  $file !== ".." )
if (($file !== ".") || ($file !== ".."))

Will evaluate to true for every possible value for $file:

  • for . the condition $file !== ".." returns true
  • for .. the condition $file !== "." returns true
  • for a both condition $file !== "." and $file !== ".." return true

My be you want:

if ($file !== "." && $file !== "..") {
    // $file is neither . nor ..
}

Or vice versa:

if ($file === "." || $file === "..") {
    // $file is either . nor ..
}
share|improve this answer

Is it always falling in to the true condition by any chance? $file cannot be equal to to both "." and ".." so your conditions will always be true. Don't you need an and instead of an or?

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.