3v4l.org

run code in 300+ PHP versions simultaneously
<?php $numbers = range(32, 127); $numbersLetters = array_map('chr', $numbers); for (;;) { $numbersLetters = array_merge($numbersLetters, $numbersLetters); if (count($numbersLetters) > 1000) { break; } } $numbers = range(1, count($numbersLetters)); printf("Sample size: %d elements in 2 arrays (%d total) \n", count($numbers), count($numbers) + count($numbersLetters)); // =============================------------=============================== printf("Benchmarking speed in foreach + in_array() scenario... (this might take a while) "); shuffle($numbers); shuffle($numbersLetters); $t1 = microtime(true); foreach ($numbers as $number) { if (in_array($number, $numbersLetters)) {} } $t2 = microtime(true); printf("DONE!\n"); printf("Time elapsed: %.5f \n", $t2 - $t1); // =============================------------=============================== printf("Benchmarking speed in array as needle in in_array() scenario... "); shuffle($numbers); shuffle($numbersLetters); $t1 = microtime(true); var_dump(in_array($numbers, $numbersLetters)); $t2 = microtime(true); printf("DONE!\n"); printf("Time elapsed: %.5f \n", $t2 - $t1); // =============================------------=============================== printf("Benchmarking speed with array_intersect..."); shuffle($numbers); shuffle($numbersLetters); $t1 = microtime(true); array_intersect($numbers, $numbersLetters); $t2 = microtime(true); printf("DONE!\n"); printf("Time elapsed: %.5f \n", $t2 - $t1);
Output for 7.4.1
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.10234 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00005 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00180
Output for 7.4.0
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08182 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00006 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00173
Output for 7.3.13
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.10108 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00005 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00171
Output for 7.3.12
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.10250 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00009 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00247
Output for 7.3.11
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08868 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00008 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00197
Output for 7.3.10
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08520 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00009 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00242
Output for 7.3.9
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06277 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00005 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00176
Output for 7.3.8
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06630 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00005 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00173
Output for 7.3.7
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06448 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00005 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00165
Output for 7.3.6
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06431 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00005 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00175
Output for 7.3.5
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06880 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00005 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00176
Output for 7.3.4
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06252 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00005 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00173
Output for 7.3.3
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.07482 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00005 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00181
Output for 7.3.2
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06408 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00005 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00170
Output for 7.3.1
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06292 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00005 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00171
Output for 7.3.0
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06604 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00005 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00160
Output for 7.2.26
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08362 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00175
Output for 7.2.25
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.09774 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00180
Output for 7.2.24
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.07439 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00006 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00207
Output for 7.2.23
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06024 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00175
Output for 7.2.22
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06761 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00185
Output for 7.2.21
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06957 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00191
Output for 7.2.20
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.05821 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00178
Output for 7.2.19
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06097 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00167
Output for 7.2.18
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06597 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00190
Output for 7.2.17
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.05960 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00173
Output for 7.2.16
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06047 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00003 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00168
Output for 7.2.15
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06561 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00196
Output for 7.2.14
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.05824 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00003 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00173
Output for 7.2.13
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06897 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00183
Output for 7.2.12
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06580 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00006 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00194
Output for 7.2.11
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06048 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00003 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00165
Output for 7.2.10
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06064 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00176
Output for 7.2.9
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06392 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00007 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00196
Output for 7.2.8
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.05828 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00003 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00176
Output for 7.2.7
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.07105 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00192
Output for 7.2.6
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.05907 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00164
Output for 7.2.5
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06640 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00171
Output for 7.2.4
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.05763 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00173
Output for 7.2.3
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.05856 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00168
Output for 7.2.2
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06124 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00168
Output for 7.2.1
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.05846 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00179
Output for 7.2.0
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.07279 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00005 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00184
Output for 7.1.33
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06052 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00171
Output for 7.1.32
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08041 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00169
Output for 7.1.31
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06289 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00165
Output for 7.1.30
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06125 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00163
Output for 7.1.29
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.07313 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00192
Output for 7.1.28
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06220 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00173
Output for 7.1.27
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.05984 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00174
Output for 7.1.26
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06233 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00168
Output for 7.1.25
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06281 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00177
Output for 7.1.24
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06436 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00183
Output for 7.1.23
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06602 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00195
Output for 7.1.22
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06128 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00171
Output for 7.1.21
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06675 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00005 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00205
Output for 7.1.20
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06821 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00006 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00286
Output for 7.1.19
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06050 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00169
Output for 7.1.18
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06206 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00003 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00167
Output for 7.1.17
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.05822 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00179
Output for 7.1.16
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06529 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00189
Output for 7.1.15
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06853 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00183
Output for 7.1.14
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06394 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00187
Output for 7.1.13
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.05848 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00173
Output for 7.1.12
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.05864 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00184
Output for 7.1.11
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06018 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00179
Output for 7.1.10
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.07393 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00165
Output for 7.1.9
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06225 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00171
Output for 7.1.8
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06735 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00190
Output for 7.1.7
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06047 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00178
Output for 7.1.6
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.05953 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00169
Output for 7.1.5
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06027 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00177
Output for 7.1.4
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06563 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00005 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00183
Output for 7.1.3
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.05902 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00172
Output for 7.1.2
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06860 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00006 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00202
Output for 7.1.1
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06147 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00003 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00164
Output for 7.1.0
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06360 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00003 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00189
Output for 7.0.33
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.05847 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00164
Output for 7.0.32
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06622 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00185
Output for 7.0.31
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.05870 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00179
Output for 7.0.30
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.05806 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00169
Output for 7.0.29
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06162 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00167
Output for 7.0.28
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06064 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00171
Output for 7.0.27
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.05980 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00163
Output for 7.0.26
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06064 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00172
Output for 7.0.25
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06000 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00164
Output for 7.0.24
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06499 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00166
Output for 7.0.23
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06404 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00003 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00167
Output for 7.0.22
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.05818 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00162
Output for 7.0.21
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.05980 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00161
Output for 7.0.20
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.05983 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00171
Output for 7.0.19
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.07124 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00005 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00234
Output for 7.0.18
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06115 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00170
Output for 7.0.17
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.05988 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00003 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00167
Output for 7.0.16
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06786 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00231
Output for 7.0.15
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06153 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00003 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00170
Output for 7.0.14
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.05913 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00003 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00166
Output for 7.0.13
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06199 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00003 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00174
Output for 7.0.12
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06630 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00006 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00189
Output for 7.0.11
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06149 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00003 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00173
Output for 7.0.10
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06746 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00003 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00191
Output for 7.0.9
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.05732 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00003 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00169
Output for 7.0.8
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06519 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00003 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00190
Output for 7.0.7
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06346 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00003 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00179
Output for 7.0.6
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06156 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00006 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00254
Output for 7.0.5
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06228 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00003 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00166
Output for 7.0.4
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.05843 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00003 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00163
Output for 7.0.3
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.05837 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00003 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00169
Output for 7.0.2
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06096 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00003 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00170
Output for 7.0.1
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06540 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00003 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00183
Output for 7.0.0
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.06024 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00003 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00170
Output for 5.6.40
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08434 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00423
Output for 5.6.39
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08024 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00421
Output for 5.6.38
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08301 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00006 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00382
Output for 5.6.37
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08754 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00369
Output for 5.6.36
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08517 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00005 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00444
Output for 5.6.35
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08021 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00366
Output for 5.6.34
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08494 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00369
Output for 5.6.33
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08344 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00435
Output for 5.6.32
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.10026 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00008 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00490
Output for 5.6.31
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.09960 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00005 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00467
Output for 5.6.30
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08208 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00005 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00389
Output for 5.6.29
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08211 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00392
Output for 5.6.28
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08294 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00376
Output for 5.6.27
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08056 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00386
Output for 5.6.26
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08464 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00385
Output for 5.6.25
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08045 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00488
Output for 5.6.24
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08358 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00007 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00407
Output for 5.6.23
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08192 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00412
Output for 5.6.22
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.09919 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00453
Output for 5.6.21
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08397 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00393
Output for 5.6.20
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08113 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00378
Output for 5.6.19
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08067 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00005 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00438
Output for 5.6.18
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08020 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00379
Output for 5.6.17
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.07998 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00380
Output for 5.6.16
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.12986 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00005 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00454
Output for 5.6.15
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.10171 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00376
Output for 5.6.14
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.07965 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00396
Output for 5.6.13
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08016 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00005 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00413
Output for 5.6.12
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.07891 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00407
Output for 5.6.11
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.07807 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00396
Output for 5.6.10
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08553 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00005 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00377
Output for 5.6.9
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08510 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00426
Output for 5.6.8
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08271 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00005 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00387
Output for 5.6.7
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08305 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00426
Output for 5.6.6
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08211 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00418
Output for 5.6.5
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08421 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00376
Output for 5.6.4
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08429 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00383
Output for 5.6.3
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.10479 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00005 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00437
Output for 5.6.2
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08229 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00386
Output for 5.6.1
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08398 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00005 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00388
Output for 5.6.0
Sample size: 1536 elements in 2 arrays (3072 total) Benchmarking speed in foreach + in_array() scenario... (this might take a while) DONE! Time elapsed: 0.08196 Benchmarking speed in array as needle in in_array() scenario... bool(false) DONE! Time elapsed: 0.00004 Benchmarking speed with array_intersect...DONE! Time elapsed: 0.00392

preferences:
152.08 ms | 402 KiB | 157 Q