Which is faster: in_array() or a bunch of expressions in PHP? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T04:23:49Zhttp://stackoverflow.com/feeds/question/324665http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/324665/which-is-faster-inarray-or-a-bunch-of-expressions-in-php4Which is faster: in_array() or a bunch of expressions in PHP?Darryl Hein2008-11-27T21:17:24Z2009-02-16T04:36:48Z
<p>Is it faster to do the following:</p>
<pre><code> if ($var != 'test1' && $var != 'test2' && $var != 'test3' && $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#3246698Answer by Owen for Which is faster: in_array() or a bunch of expressions in PHP?Owen2008-11-27T21:21:51Z2008-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 < $iterations; ++$i) {
if ($var != 'test1' && $var != 'test2' && $var != 'test3' && $var != 'test4') {}
}
$end = microtime(true);
print "Time1: ". ($end - $start)."<br />";
$start2 = microtime(true);
for($i = 0; $i < $iterations; ++$i) {
if (!in_array($var, $array) ) {}
}
$end2 = microtime(true);
print "Time2: ".($end2 - $start2)."<br />";
// 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#3246711Answer by Greg for Which is faster: in_array() or a bunch of expressions in PHP?Greg2008-11-27T21:22:13Z2008-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#3246762Answer by Sparr for Which is faster: in_array() or a bunch of expressions in PHP?Sparr2008-11-27T21:26:04Z2008-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 < $iterations; ++$i) {
if (!isset($array2[$var])) {}
}
$end = microtime(true);
print "Time3: ".($end - $start)."<br />";
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#3249343Answer by Rob for Which is faster: in_array() or a bunch of expressions in PHP?Rob2008-11-28T01:43:02Z2008-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#5522311Answer by Aaron Schmidt for Which is faster: in_array() or a bunch of expressions in PHP?Aaron Schmidt2009-02-16T04:04:50Z2009-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 < $iterations; ++$i) {
if ($var != 'test1' && $var != 'test2' && $var != 'test3' && $var != 'test4') {}
}
print "Time1: ". (microtime(true) - $start);
$start = microtime(true);
for($i = 0; $i < $iterations; ++$i) {
if (!in_array($var, $array) ) {}
}
print "Time2: ".(microtime(true) - $start);
$start = microtime(true);
for($i = 0; $i < $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 < $iterations; ++$i) {
if (!isset($array2[$var])) {}
}
print "Time3: ".(microtime(true) - $start);
$start = microtime(true);
for($i = 0; $i < $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>