Are there any alternative patters for reducing a multi-line if statment such as:

if ($x == $y
  && $x == $z
  && $y == $v
  && $m == $t
  && $f == $x
  && $h == $g
  && $q == $w
  && $w == $p // etc
)

To something more readable or presentable in PHP especially?

link|improve this question

3  
A refactor may be in order if you're finding yourself comparing that many conditions... – Brad Christie Mar 14 '11 at 18:53
I don't have write-access to the code that generates the two sets of variables, I just need to check if one set is a duplicate of the other. – chustar Mar 14 '11 at 18:55
3  
I think that this type of statement is universal and easily understandable. Any "clever" way of doing it would probably sacrifice those traits. – Kevin Mar 14 '11 at 18:55
@brad gratz on 10k – kjy112 Mar 14 '11 at 18:55
@chuster: You're telling me you don't know of any easier way to compare two objects as the same other than checking each property individually? Also, this sounds like a perfect opportunity to create an object comparison method. – Brad Christie Mar 14 '11 at 18:57
show 5 more comments
feedback

1 Answer

up vote 1 down vote accepted

You could compact this particular instance with:

if (array($x, $x, $y, $m, $f, $h, $q, $w)
 == array($y, $z, $v, $t, $x, $g, $w, $p))

But I'm not sure if this is what you want. Your single letter variable names are a bit abstract.

If you are concerned about readability, then using and over && sometimes helps.

link|improve this answer
Thanks. The single letter variables are just because I don't want to type out regular variable names. – chustar Mar 14 '11 at 19:01
My carpel tunnel prefers && personally (I also find it a bit more intuitive than "and", but that's probably just me.) – Brad Christie Mar 14 '11 at 19:01
@Brad: If that was a common issue for me I would even go so far and make it an URL string "$x=$y $x=$z $y=$v" and compare that via an url_parse/array_keys/values wrapper function. Depending on the var types. Certainly a helper function in any case. – mario Mar 14 '11 at 19:07
If these are in-fact objects, what's wrong with traditional comparison? – Brad Christie Mar 14 '11 at 19:13
feedback

Your Answer

 
or
required, but never shown

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