Which is faster: in_array() or a bunch of expressions in PHP? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T04:23:49Z http://stackoverflow.com/feeds/question/324665 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/324665/which-is-faster-inarray-or-a-bunch-of-expressions-in-php 4 Which is faster: in_array() or a bunch of expressions in PHP? Darryl Hein 2008-11-27T21:17:24Z 2009-02-16T04:36:48Z <p>Is it faster to do the following:</p> <pre><code> if ($var != 'test1' &amp;&amp; $var != 'test2' &amp;&amp; $var != 'test3' &amp;&amp; $var != 'test4') { ... } </code></pre> <p>Or:</p> <pre><code> if (!in_array($var, array('test1', 'test2', 'test3', 'test4') { ... } </code></pre> <p>Is there a number of values at which point it's faster to do one or the other?</p> <p>(In this case, the array used in the second option doesn't alreay exist.)</p> http://stackoverflow.com/questions/324665/which-is-faster-inarray-or-a-bunch-of-expressions-in-php/324669#324669 8 Answer by Owen for Which is faster: in_array() or a bunch of expressions in PHP? Owen 2008-11-27T21:21:51Z 2008-11-27T21:32:15Z <p>i'd strongly suggest just using <code>in_array()</code>, any speed difference would be negligible, but the readability of testing each variable separately is horrible.</p> <p>just for fun here's a test i ran:</p> <pre><code>$array = array('test1', 'test2', 'test3', 'test4'); $var = 'test'; $iterations = 1000000; $start = microtime(true); for($i = 0; $i &lt; $iterations; ++$i) { if ($var != 'test1' &amp;&amp; $var != 'test2' &amp;&amp; $var != 'test3' &amp;&amp; $var != 'test4') {} } $end = microtime(true); print "Time1: ". ($end - $start)."&lt;br /&gt;"; $start2 = microtime(true); for($i = 0; $i &lt; $iterations; ++$i) { if (!in_array($var, $array) ) {} } $end2 = microtime(true); print "Time2: ".($end2 - $start2)."&lt;br /&gt;"; // Time1: 1.12536692619 // Time2: 1.57462596893 </code></pre> <p>slightly trivial note to watch for, if <code>$var</code> is not set, method 1 takes much longer (depending on how many conditions you test)</p> http://stackoverflow.com/questions/324665/which-is-faster-inarray-or-a-bunch-of-expressions-in-php/324671#324671 1 Answer by Greg for Which is faster: in_array() or a bunch of expressions in PHP? Greg 2008-11-27T21:22:13Z 2008-11-27T23:23:03Z <p>The first will be faster - the second has a lot of overhead: creating the array, calling a function, searching the array...</p> <p>However, as I said in a question a couple of answers down, premature optimization is the root of all evil. You should write your code to be readable, then <em>if</em> it needs to be optimized profile it, then optimize.</p> <p>Edit:</p> <p>My timings with @Owen's code (PHP 5.2.6 / windows):</p> <pre><code>Time1: 1.33601498604 Time2: 4.9349629879 </code></pre> <p>Moving the array(...) inside the loop, as in the question:</p> <pre><code>Time1: 1.34736609459 Time2: 6.29464697838 </code></pre> http://stackoverflow.com/questions/324665/which-is-faster-inarray-or-a-bunch-of-expressions-in-php/324676#324676 2 Answer by Sparr for Which is faster: in_array() or a bunch of expressions in PHP? Sparr 2008-11-27T21:26:04Z 2008-11-28T23:28:13Z <p>in_array will be faster for large numbers of items. "large" being very subjective based on a lot of factors related to the data and your computer. Since you are asking, I assume you are not dealing with a trivial number of items. For longer lists, heed <a href="http://blog.maartenballiauw.be/post/2007/01/php-code-performance-tweaks.aspx" rel="nofollow">this information</a>, and measure performance with a flipped array so that php can utilize hash lookups instead of a linear search. For a "static" array that tweak may not improve performance, but it also may.</p> <p>Using Owen's test code, with a flipped array and more iterations for more consistent results:</p> <pre><code>$array2 = array_flip($array); $iterations = 10000000; $start = microtime(true); for($i = 0; $i &lt; $iterations; ++$i) { if (!isset($array2[$var])) {} } $end = microtime(true); print "Time3: ".($end - $start)."&lt;br /&gt;"; Time1: 12.875 Time2: 13.7037701607 Time3: 3.70514011383 </code></pre> http://stackoverflow.com/questions/324665/which-is-faster-inarray-or-a-bunch-of-expressions-in-php/324934#324934 3 Answer by Rob for Which is faster: in_array() or a bunch of expressions in PHP? Rob 2008-11-28T01:43:02Z 2008-11-28T01:43:02Z <p>Note that if you're looking to replace a bunch of <code>!==</code> statements, you should pass the third parameter to <a href="http://uk.php.net/manual/en/function.in-array.php" rel="nofollow"><code>in_array</code></a> as <code>true</code>, which enforces type checking on the items in the array.</p> <p>Ordinary <code>!=</code> doesn't require this, obviously.</p> http://stackoverflow.com/questions/324665/which-is-faster-inarray-or-a-bunch-of-expressions-in-php/552231#552231 1 Answer by Aaron Schmidt for Which is faster: in_array() or a bunch of expressions in PHP? Aaron Schmidt 2009-02-16T04:04:50Z 2009-02-16T04:36:48Z <p>Note that as RoBorg pointed out, there's overhead in creating the array so it should be moved inside the iteration loop. For this reason, Sparr's post is also a little misleading as there's overhead with the array_flip function.</p> <p>Here's another example with all 5 variations:</p> <pre><code>$array = array('test1', 'test2', 'test3', 'test4'); $var = 'test'; $iterations = 1000000; $start = microtime(true); for($i = 0; $i &lt; $iterations; ++$i) { if ($var != 'test1' &amp;&amp; $var != 'test2' &amp;&amp; $var != 'test3' &amp;&amp; $var != 'test4') {} } print "Time1: ". (microtime(true) - $start); $start = microtime(true); for($i = 0; $i &lt; $iterations; ++$i) { if (!in_array($var, $array) ) {} } print "Time2: ".(microtime(true) - $start); $start = microtime(true); for($i = 0; $i &lt; $iterations; ++$i) { if (!in_array($var, array('test1', 'test2', 'test3', 'test4')) ) {} } print "Time2a: ".(microtime(true) - $start); $array2 = array_flip($array); $start = microtime(true); for($i = 0; $i &lt; $iterations; ++$i) { if (!isset($array2[$var])) {} } print "Time3: ".(microtime(true) - $start); $start = microtime(true); for($i = 0; $i &lt; $iterations; ++$i) { $array2 = array_flip($array); if (!isset($array2[$var])) {} } print "Time3a: ".(microtime(true) - $start); </code></pre> <p>My results:</p> <pre><code>Time1 : 0.59490108493 // straight comparison Time2 : 0.83790588378 // array() outside loop - not accurate Time2a: 2.16737604141 // array() inside loop Time3 : 0.16908097267 // array_flip outside loop - not accurate Time3a: 1.57209014893 // array_flip inside loop </code></pre> <p>In summary, using <code>array_flip</code> (with isset) is faster than inarray but not as fast as a straight comparison.</p>