3v4l.org

run code in 300+ PHP versions simultaneously
<?php $arr = array(0 => true, 8 => true, 16 => true, 32 => true, 64 => true, 128 => true, 256 => true, 256 => 'foo'); $array = array('foo', true, true, true, true, true, true, 'foo'); ini_set('precision', 12); echo "Test with hash collisions\n"; for ($i = 0; $i <= 10000; $i++) { $t = microtime(true); isset($arr[256]); $t = microtime(true) - $t; $r[] = $t; } array_pop($r); array_shift($r); printf("isset() test avg(10K): %.12f\n", array_sum($r) / count($r)); for ($i = 0; $i <= 10000; $i++) { $t = microtime(true); in_array('foo', $arr); $t = microtime(true) - $t; $rr[] = $t; } array_pop($rr); array_shift($rr); printf("in_array() test avg(10K): %.12f \n", array_sum($rr) / count($rr)); echo "\n\nTests without hash collisions\n"; /* Without hash collisions */ for ($i = 0; $i <= 10000; $i++) { $t = microtime(true); isset($array[7]); $t = microtime(true) - $t; $r[] = $t; } printf("isset() test avg(10K): %.12f\n", array_sum($r) / count($r)); for ($i = 0; $i <= 10000; $i++) { $t = microtime(true); in_array('foo', $array); $t = microtime(true) - $t; $rr[] = $t; } printf("in_array() test avg(10K): %.12f \n", array_sum($rr) / count($rr));
Output for 7.4.0
Test with hash collisions isset() test avg(10K): 0.000000114023 in_array() test avg(10K): 0.000000199886 Tests without hash collisions isset() test avg(10K): 0.000000118363 in_array() test avg(10K): 0.000000173533
Output for 7.3.12
Test with hash collisions isset() test avg(10K): 0.000000129522 in_array() test avg(10K): 0.000000161426 Tests without hash collisions isset() test avg(10K): 0.000000117767 in_array() test avg(10K): 0.000000151408
Output for 7.3.11
Test with hash collisions isset() test avg(10K): 0.000000088224 in_array() test avg(10K): 0.000000115335 Tests without hash collisions isset() test avg(10K): 0.000000087154 in_array() test avg(10K): 0.000000109291
Output for 7.3.10
Test with hash collisions isset() test avg(10K): 0.000000161855 in_array() test avg(10K): 0.000000137367 Tests without hash collisions isset() test avg(10K): 0.000000125933 in_array() test avg(10K): 0.000000121391
Output for 7.3.9
Test with hash collisions isset() test avg(10K): 0.000000107681 in_array() test avg(10K): 0.000000164501 Tests without hash collisions isset() test avg(10K): 0.000000118494 in_array() test avg(10K): 0.000000146616
Output for 7.3.8
Test with hash collisions isset() test avg(10K): 0.000000095449 in_array() test avg(10K): 0.000000119269 Tests without hash collisions isset() test avg(10K): 0.000000092864 in_array() test avg(10K): 0.000000114143
Output for 7.3.7
Test with hash collisions isset() test avg(10K): 0.000000093016 in_array() test avg(10K): 0.000000117934 Tests without hash collisions isset() test avg(10K): 0.000000091183 in_array() test avg(10K): 0.000000112748
Output for 7.3.6
Test with hash collisions isset() test avg(10K): 0.000000088867 in_array() test avg(10K): 0.000000118053 Tests without hash collisions isset() test avg(10K): 0.000000088727 in_array() test avg(10K): 0.000000118458
Output for 7.3.5
Test with hash collisions isset() test avg(10K): 0.000000143018 in_array() test avg(10K): 0.000000183791 Tests without hash collisions isset() test avg(10K): 0.000000122881 in_array() test avg(10K): 0.000000144243
Output for 7.3.4
Test with hash collisions isset() test avg(10K): 0.000000135674 in_array() test avg(10K): 0.000000106131 Tests without hash collisions isset() test avg(10K): 0.000000113463 in_array() test avg(10K): 0.000000101531
Output for 7.3.3
Test with hash collisions isset() test avg(10K): 0.000000151363 in_array() test avg(10K): 0.000000155560 Tests without hash collisions isset() test avg(10K): 0.000000117779 in_array() test avg(10K): 0.000000125802
Output for 7.3.2
Test with hash collisions isset() test avg(10K): 0.000000086817 in_array() test avg(10K): 0.000000109517 Tests without hash collisions isset() test avg(10K): 0.000000085473 in_array() test avg(10K): 0.000000106919
Output for 7.3.1
Test with hash collisions isset() test avg(10K): 0.000000089392 in_array() test avg(10K): 0.000000100599 Tests without hash collisions isset() test avg(10K): 0.000000089586 in_array() test avg(10K): 0.000000098634
Output for 7.3.0
Test with hash collisions isset() test avg(10K): 0.000000091776 in_array() test avg(10K): 0.000000115406 Tests without hash collisions isset() test avg(10K): 0.000000089121 in_array() test avg(10K): 0.000000110769
Output for 7.2.25
Test with hash collisions isset() test avg(10K): 0.000000123823 in_array() test avg(10K): 0.000000196548 Tests without hash collisions isset() test avg(10K): 0.000000127506 in_array() test avg(10K): 0.000000179601
Output for 7.2.24
Test with hash collisions isset() test avg(10K): 0.000000111281 in_array() test avg(10K): 0.000000117194 Tests without hash collisions isset() test avg(10K): 0.000000102365 in_array() test avg(10K): 0.000000114357
Output for 7.2.23
Test with hash collisions isset() test avg(10K): 0.000000112974 in_array() test avg(10K): 0.000000120652 Tests without hash collisions isset() test avg(10K): 0.000000104034 in_array() test avg(10K): 0.000000123596
Output for 7.2.22
Test with hash collisions isset() test avg(10K): 0.000000093922 in_array() test avg(10K): 0.000000115931 Tests without hash collisions isset() test avg(10K): 0.000000091600 in_array() test avg(10K): 0.000000118029
Output for 7.2.21
Test with hash collisions isset() test avg(10K): 0.000000094542 in_array() test avg(10K): 0.000000117075 Tests without hash collisions isset() test avg(10K): 0.000000090992 in_array() test avg(10K): 0.000000117230
Output for 7.2.20
Test with hash collisions isset() test avg(10K): 0.000000088319 in_array() test avg(10K): 0.000000120390 Tests without hash collisions isset() test avg(10K): 0.000000088131 in_array() test avg(10K): 0.000000121570
Output for 7.2.19
Test with hash collisions isset() test avg(10K): 0.000000096808 in_array() test avg(10K): 0.000000116002 Tests without hash collisions isset() test avg(10K): 0.000000095117 in_array() test avg(10K): 0.000000110126
Output for 7.2.18
Test with hash collisions isset() test avg(10K): 0.000000167124 in_array() test avg(10K): 0.000000151339 Tests without hash collisions isset() test avg(10K): 0.000000126553 in_array() test avg(10K): 0.000000134361
Output for 7.2.17
Test with hash collisions isset() test avg(10K): 0.000000088987 in_array() test avg(10K): 0.000000103412 Tests without hash collisions isset() test avg(10K): 0.000000088418 in_array() test avg(10K): 0.000000124931
Output for 7.2.0
Test with hash collisions isset() test avg(10K): 0.000000083264 in_array() test avg(10K): 0.000000135030 Tests without hash collisions isset() test avg(10K): 0.000000072360 in_array() test avg(10K): 0.000000101924
Output for 7.1.33
Test with hash collisions isset() test avg(10K): 0.000000192352 in_array() test avg(10K): 0.000000186414 Tests without hash collisions isset() test avg(10K): 0.000000170290 in_array() test avg(10K): 0.000000188267
Output for 7.1.32
Test with hash collisions isset() test avg(10K): 0.000000187201 in_array() test avg(10K): 0.000000184745 Tests without hash collisions isset() test avg(10K): 0.000000170100 in_array() test avg(10K): 0.000000188196
Output for 7.1.31
Test with hash collisions isset() test avg(10K): 0.000000181169 in_array() test avg(10K): 0.000000187463 Tests without hash collisions isset() test avg(10K): 0.000000164211 in_array() test avg(10K): 0.000000185192
Output for 7.1.30
Test with hash collisions isset() test avg(10K): 0.000000153581 in_array() test avg(10K): 0.000000186748 Tests without hash collisions isset() test avg(10K): 0.000000155389 in_array() test avg(10K): 0.000000190639
Output for 7.1.29
Test with hash collisions isset() test avg(10K): 0.000000153867 in_array() test avg(10K): 0.000000207493 Tests without hash collisions isset() test avg(10K): 0.000000154424 in_array() test avg(10K): 0.000000212121
Output for 7.1.28
Test with hash collisions isset() test avg(10K): 0.000000231599 in_array() test avg(10K): 0.000000243426 Tests without hash collisions isset() test avg(10K): 0.000000187361 in_array() test avg(10K): 0.000000211918
Output for 7.1.27
Test with hash collisions isset() test avg(10K): 0.000000162022 in_array() test avg(10K): 0.000000205347 Tests without hash collisions isset() test avg(10K): 0.000000158358 in_array() test avg(10K): 0.000000203454
Output for 7.1.26
Test with hash collisions isset() test avg(10K): 0.000000205776 in_array() test avg(10K): 0.000000181765 Tests without hash collisions isset() test avg(10K): 0.000000176346 in_array() test avg(10K): 0.000000185812
Output for 7.1.7
Test with hash collisions isset() test avg(10K): 0.000000080093 in_array() test avg(10K): 0.000000093279 Tests without hash collisions isset() test avg(10K): 0.000000077415 in_array() test avg(10K): 0.000000089324
Output for 7.1.6
Test with hash collisions isset() test avg(10K): 0.000000143662 in_array() test avg(10K): 0.000000245643 Tests without hash collisions isset() test avg(10K): 0.000000142801 in_array() test avg(10K): 0.000000207317
Output for 7.1.5
Test with hash collisions isset() test avg(10K): 0.000000169699 in_array() test avg(10K): 0.000000210712 Tests without hash collisions isset() test avg(10K): 0.000000166154 in_array() test avg(10K): 0.000000202489
Output for 7.1.0
Test with hash collisions isset() test avg(10K): 0.000000137176 in_array() test avg(10K): 0.000000180501 Tests without hash collisions isset() test avg(10K): 0.000000130582 in_array() test avg(10K): 0.000000173712
Output for 7.0.20
Test with hash collisions isset() test avg(10K): 0.000000107061 in_array() test avg(10K): 0.000000119340 Tests without hash collisions isset() test avg(10K): 0.000000095451 in_array() test avg(10K): 0.000000141478
Output for 7.0.14
Test with hash collisions isset() test avg(10K): 0.000000131668 in_array() test avg(10K): 0.000000200482 Tests without hash collisions isset() test avg(10K): 0.000000125349 in_array() test avg(10K): 0.000000189292
Output for 7.0.6
Test with hash collisions isset() test avg(10K): 0.000000107657 in_array() test avg(10K): 0.000000132789 Tests without hash collisions isset() test avg(10K): 0.000000106609 in_array() test avg(10K): 0.000000130057
Output for 7.0.5
Test with hash collisions isset() test avg(10K): 0.000000087294 in_array() test avg(10K): 0.000000112473 Tests without hash collisions isset() test avg(10K): 0.000000087976 in_array() test avg(10K): 0.000000106251
Output for 7.0.4
Test with hash collisions isset() test avg(10K): 0.000000090346 in_array() test avg(10K): 0.000000108324 Tests without hash collisions isset() test avg(10K): 0.000000087678 in_array() test avg(10K): 0.000000105274
Output for 7.0.3
Test with hash collisions isset() test avg(10K): 0.000000089392 in_array() test avg(10K): 0.000000145498 Tests without hash collisions isset() test avg(10K): 0.000000087225 in_array() test avg(10K): 0.000000123739
Output for 7.0.2
Test with hash collisions isset() test avg(10K): 0.000000068004 in_array() test avg(10K): 0.000000086316 Tests without hash collisions isset() test avg(10K): 0.000000068057 in_array() test avg(10K): 0.000000083494
Output for 7.0.1
Test with hash collisions isset() test avg(10K): 0.000000086483 in_array() test avg(10K): 0.000000109302 Tests without hash collisions isset() test avg(10K): 0.000000086010 in_array() test avg(10K): 0.000000105548
Output for 7.0.0
Test with hash collisions isset() test avg(10K): 0.000000066859 in_array() test avg(10K): 0.000000087723 Tests without hash collisions isset() test avg(10K): 0.000000067210 in_array() test avg(10K): 0.000000084758
Output for 5.6.28
Test with hash collisions isset() test avg(10K): 0.000000224970 in_array() test avg(10K): 0.000000396267 Tests without hash collisions isset() test avg(10K): 0.000000218523 in_array() test avg(10K): 0.000000387728
Output for 5.6.21
Test with hash collisions isset() test avg(10K): 0.000000153318 in_array() test avg(10K): 0.000000252534 Tests without hash collisions isset() test avg(10K): 0.000000150108 in_array() test avg(10K): 0.000000251055
Output for 5.6.20
Test with hash collisions isset() test avg(10K): 0.000000167053 in_array() test avg(10K): 0.000000287967 Tests without hash collisions isset() test avg(10K): 0.000000163865 in_array() test avg(10K): 0.000000284147
Output for 5.6.19
Test with hash collisions isset() test avg(10K): 0.000000199696 in_array() test avg(10K): 0.000000313385 Tests without hash collisions isset() test avg(10K): 0.000000187278 in_array() test avg(10K): 0.000000307286
Output for 5.6.18
Test with hash collisions isset() test avg(10K): 0.000000125898 in_array() test avg(10K): 0.000000215862 Tests without hash collisions isset() test avg(10K): 0.000000129819 in_array() test avg(10K): 0.000000217843
Output for 5.6.17
Test with hash collisions isset() test avg(10K): 0.000000140919 in_array() test avg(10K): 0.000000238037 Tests without hash collisions isset() test avg(10K): 0.000000138080 in_array() test avg(10K): 0.000000240183
Output for 5.6.16
Test with hash collisions isset() test avg(10K): 0.000000153199 in_array() test avg(10K): 0.000000264242 Tests without hash collisions isset() test avg(10K): 0.000000151777 in_array() test avg(10K): 0.000000261855
Output for 5.6.15
Test with hash collisions isset() test avg(10K): 0.000000131143 in_array() test avg(10K): 0.000000212595 Tests without hash collisions isset() test avg(10K): 0.000000127816 in_array() test avg(10K): 0.000000217581
Output for 5.6.14
Test with hash collisions isset() test avg(10K): 0.000000201436 in_array() test avg(10K): 0.000000329337 Tests without hash collisions isset() test avg(10K): 0.000000194108 in_array() test avg(10K): 0.000000320756
Output for 5.6.13
Test with hash collisions isset() test avg(10K): 0.000000198909 in_array() test avg(10K): 0.000000364054 Tests without hash collisions isset() test avg(10K): 0.000000194347 in_array() test avg(10K): 0.000000340128
Output for 5.6.12
Test with hash collisions isset() test avg(10K): 0.000000160305 in_array() test avg(10K): 0.000000287609 Tests without hash collisions isset() test avg(10K): 0.000000159466 in_array() test avg(10K): 0.000000281417
Output for 5.6.11
Test with hash collisions isset() test avg(10K): 0.000000198766 in_array() test avg(10K): 0.000000341378 Tests without hash collisions isset() test avg(10K): 0.000000191605 in_array() test avg(10K): 0.000000316429
Output for 5.6.10
Test with hash collisions isset() test avg(10K): 0.000000125564 in_array() test avg(10K): 0.000000210878 Tests without hash collisions isset() test avg(10K): 0.000000124800 in_array() test avg(10K): 0.000000215149
Output for 5.6.9
Test with hash collisions isset() test avg(10K): 0.000000194855 in_array() test avg(10K): 0.000000320896 Tests without hash collisions isset() test avg(10K): 0.000000189853 in_array() test avg(10K): 0.000000321484
Output for 5.6.8
Test with hash collisions isset() test avg(10K): 0.000000210497 in_array() test avg(10K): 0.000000344239 Tests without hash collisions isset() test avg(10K): 0.000000200975 in_array() test avg(10K): 0.000000336814
Output for 5.6.7
Test with hash collisions isset() test avg(10K): 0.000000129236 in_array() test avg(10K): 0.000000220416 Tests without hash collisions isset() test avg(10K): 0.000000128937 in_array() test avg(10K): 0.000000220728
Output for 5.5.35
Test with hash collisions isset() test avg(10K): 0.000000146046 in_array() test avg(10K): 0.000000297934 Tests without hash collisions isset() test avg(10K): 0.000000157368 in_array() test avg(10K): 0.000000282228
Output for 5.5.34
Test with hash collisions isset() test avg(10K): 0.000000157205 in_array() test avg(10K): 0.000000281505 Tests without hash collisions isset() test avg(10K): 0.000000159585 in_array() test avg(10K): 0.000000280213
Output for 5.5.33
Test with hash collisions isset() test avg(10K): 0.000000138487 in_array() test avg(10K): 0.000000231861 Tests without hash collisions isset() test avg(10K): 0.000000136089 in_array() test avg(10K): 0.000000249922
Output for 5.5.32
Test with hash collisions isset() test avg(10K): 0.000000172608 in_array() test avg(10K): 0.000000271634 Tests without hash collisions isset() test avg(10K): 0.000000169182 in_array() test avg(10K): 0.000000270009
Output for 5.5.31
Test with hash collisions isset() test avg(10K): 0.000000190229 in_array() test avg(10K): 0.000000260570 Tests without hash collisions isset() test avg(10K): 0.000000168371 in_array() test avg(10K): 0.000000255823
Output for 5.5.30
Test with hash collisions isset() test avg(10K): 0.000000210020 in_array() test avg(10K): 0.000000354683 Tests without hash collisions isset() test avg(10K): 0.000000204647 in_array() test avg(10K): 0.000000344908
Output for 5.5.29
Test with hash collisions isset() test avg(10K): 0.000000133766 in_array() test avg(10K): 0.000000251724 Tests without hash collisions isset() test avg(10K): 0.000000135493 in_array() test avg(10K): 0.000000295258
Output for 5.5.28
Test with hash collisions isset() test avg(10K): 0.000000146952 in_array() test avg(10K): 0.000000264242 Tests without hash collisions isset() test avg(10K): 0.000000146222 in_array() test avg(10K): 0.000000261652
Output for 5.5.27
Test with hash collisions isset() test avg(10K): 0.000000129903 in_array() test avg(10K): 0.000000259139 Tests without hash collisions isset() test avg(10K): 0.000000128686 in_array() test avg(10K): 0.000000243020
Output for 5.5.26
Test with hash collisions isset() test avg(10K): 0.000000213120 in_array() test avg(10K): 0.000000353276 Tests without hash collisions isset() test avg(10K): 0.000000207055 in_array() test avg(10K): 0.000000343585
Output for 5.5.25
Test with hash collisions isset() test avg(10K): 0.000000208184 in_array() test avg(10K): 0.000000339590 Tests without hash collisions isset() test avg(10K): 0.000000198531 in_array() test avg(10K): 0.000000333941
Output for 5.5.24
Test with hash collisions isset() test avg(10K): 0.000000183577 in_array() test avg(10K): 0.000000291091 Tests without hash collisions isset() test avg(10K): 0.000000178170 in_array() test avg(10K): 0.000000293839
Output for 5.4.45
Test with hash collisions isset() test avg(10K): 0.000000215099 in_array() test avg(10K): 0.000000381269 Tests without hash collisions isset() test avg(10K): 0.000000206852 in_array() test avg(10K): 0.000000354683
Output for 5.4.44
Test with hash collisions isset() test avg(10K): 0.000000235629 in_array() test avg(10K): 0.000000581370 Tests without hash collisions isset() test avg(10K): 0.000000266647 in_array() test avg(10K): 0.000000518310
Output for 5.4.43
Test with hash collisions isset() test avg(10K): 0.000000227355 in_array() test avg(10K): 0.000000387755 Tests without hash collisions isset() test avg(10K): 0.000000288832 in_array() test avg(10K): 0.000000426948
Output for 5.4.42
Test with hash collisions isset() test avg(10K): 0.000000255920 in_array() test avg(10K): 0.000000398509 Tests without hash collisions isset() test avg(10K): 0.000000249600 in_array() test avg(10K): 0.000000394630
Output for 5.4.41
Test with hash collisions isset() test avg(10K): 0.000000268963 in_array() test avg(10K): 0.000000411838 Tests without hash collisions isset() test avg(10K): 0.000000262558 in_array() test avg(10K): 0.000000409293
Output for 5.4.40
Test with hash collisions isset() test avg(10K): 0.000000263980 in_array() test avg(10K): 0.000000397722 Tests without hash collisions isset() test avg(10K): 0.000000258791 in_array() test avg(10K): 0.000000393403
Output for 5.4.39
Test with hash collisions isset() test avg(10K): 0.000000259354 in_array() test avg(10K): 0.000000463461 Tests without hash collisions isset() test avg(10K): 0.000000308502 in_array() test avg(10K): 0.000000439477
Output for 5.4.38
Test with hash collisions isset() test avg(10K): 0.000000246526 in_array() test avg(10K): 0.000000438663 Tests without hash collisions isset() test avg(10K): 0.000000241852 in_array() test avg(10K): 0.000000461745
Output for 5.4.37
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000382915 in_array() test avg(10K): 0.000000666780 Tests without hash collisions isset() test avg(10K): 0.000000384760 in_array() test avg(10K): 0.000000654066
Output for 5.4.36
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000254657 in_array() test avg(10K): 0.000000371589 Tests without hash collisions isset() test avg(10K): 0.000000293541 in_array() test avg(10K): 0.000000362992
Output for 5.4.35
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000297362 in_array() test avg(10K): 0.000000515536 Tests without hash collisions isset() test avg(10K): 0.000000301957 in_array() test avg(10K): 0.000000441682
Output for 5.4.34
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000352895 in_array() test avg(10K): 0.000000360215 Tests without hash collisions isset() test avg(10K): 0.000000292683 in_array() test avg(10K): 0.000000389874
Output for 5.4.32
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000244427 in_array() test avg(10K): 0.000000392810 Tests without hash collisions isset() test avg(10K): 0.000000304735 in_array() test avg(10K): 0.000000394845
Output for 5.4.31
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000260761 in_array() test avg(10K): 0.000000340520 Tests without hash collisions isset() test avg(10K): 0.000000246549 in_array() test avg(10K): 0.000000334382
Output for 5.4.30
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000230216 in_array() test avg(10K): 0.000000344597 Tests without hash collisions isset() test avg(10K): 0.000000233626 in_array() test avg(10K): 0.000000347066
Output for 5.4.29
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000222133 in_array() test avg(10K): 0.000000367225 Tests without hash collisions isset() test avg(10K): 0.000000219059 in_array() test avg(10K): 0.000000366807
Output for 5.4.28
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000224112 in_array() test avg(10K): 0.000000343095 Tests without hash collisions isset() test avg(10K): 0.000000228369 in_array() test avg(10K): 0.000000350475
Output for 5.4.27
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000236988 in_array() test avg(10K): 0.000000351393 Tests without hash collisions isset() test avg(10K): 0.000000245130 in_array() test avg(10K): 0.000000351250
Output for 5.4.26
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000220535 in_array() test avg(10K): 0.000000387874 Tests without hash collisions isset() test avg(10K): 0.000000221252 in_array() test avg(10K): 0.000000383282
Output for 5.4.25
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000242329 in_array() test avg(10K): 0.000000340806 Tests without hash collisions isset() test avg(10K): 0.000000241935 in_array() test avg(10K): 0.000000349116
Output for 5.4.24
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000233793 in_array() test avg(10K): 0.000000340782 Tests without hash collisions isset() test avg(10K): 0.000000233603 in_array() test avg(10K): 0.000000351036
Output for 5.4.23
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000226139 in_array() test avg(10K): 0.000000334678 Tests without hash collisions isset() test avg(10K): 0.000000231302 in_array() test avg(10K): 0.000000340617
Output for 5.4.22
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000230717 in_array() test avg(10K): 0.000000362075 Tests without hash collisions isset() test avg(10K): 0.000000234914 in_array() test avg(10K): 0.000000356853
Output for 5.4.21
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000249506 in_array() test avg(10K): 0.000000350200 Tests without hash collisions isset() test avg(10K): 0.000000236952 in_array() test avg(10K): 0.000000361288
Output for 5.4.20
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000235867 in_array() test avg(10K): 0.000000346004 Tests without hash collisions isset() test avg(10K): 0.000000242066 in_array() test avg(10K): 0.000000350475
Output for 5.4.19
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000248314 in_array() test avg(10K): 0.000000348579 Tests without hash collisions isset() test avg(10K): 0.000000239444 in_array() test avg(10K): 0.000000341702
Output for 5.4.18
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000485826 in_array() test avg(10K): 0.000000346719 Tests without hash collisions isset() test avg(10K): 0.000000363863 in_array() test avg(10K): 0.000000348461
Output for 5.4.17
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000215576 in_array() test avg(10K): 0.000000357234 Tests without hash collisions isset() test avg(10K): 0.000000215733 in_array() test avg(10K): 0.000000364852
Output for 5.4.16
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000240779 in_array() test avg(10K): 0.000000356138 Tests without hash collisions isset() test avg(10K): 0.000000233912 in_array() test avg(10K): 0.000000357056
Output for 5.4.15
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000241924 in_array() test avg(10K): 0.000000346457 Tests without hash collisions isset() test avg(10K): 0.000000240481 in_array() test avg(10K): 0.000000341153
Output for 5.4.14
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000231528 in_array() test avg(10K): 0.000000352632 Tests without hash collisions isset() test avg(10K): 0.000000230050 in_array() test avg(10K): 0.000000340617
Output for 5.4.13
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000237131 in_array() test avg(10K): 0.000000335322 Tests without hash collisions isset() test avg(10K): 0.000000233579 in_array() test avg(10K): 0.000000341463
Output for 5.4.12
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000232386 in_array() test avg(10K): 0.000000345455 Tests without hash collisions isset() test avg(10K): 0.000000230682 in_array() test avg(10K): 0.000000354552
Output for 5.4.11
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000237560 in_array() test avg(10K): 0.000000443765 Tests without hash collisions isset() test avg(10K): 0.000000248027 in_array() test avg(10K): 0.000000444508
Output for 5.4.10
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000242687 in_array() test avg(10K): 0.000000376334 Tests without hash collisions isset() test avg(10K): 0.000000245440 in_array() test avg(10K): 0.000000369358
Output for 5.4.9
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000223659 in_array() test avg(10K): 0.000000350892 Tests without hash collisions isset() test avg(10K): 0.000000228071 in_array() test avg(10K): 0.000000346839
Output for 5.4.8
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000243307 in_array() test avg(10K): 0.000000354325 Tests without hash collisions isset() test avg(10K): 0.000000236416 in_array() test avg(10K): 0.000000359786
Output for 5.4.7
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000218342 in_array() test avg(10K): 0.000000332866 Tests without hash collisions isset() test avg(10K): 0.000000230801 in_array() test avg(10K): 0.000000340319
Output for 5.4.6
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000226711 in_array() test avg(10K): 0.000000362003 Tests without hash collisions isset() test avg(10K): 0.000000229526 in_array() test avg(10K): 0.000000361705
Output for 5.4.5
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000250031 in_array() test avg(10K): 0.000000361979 Tests without hash collisions isset() test avg(10K): 0.000000254941 in_array() test avg(10K): 0.000000373554
Output for 5.4.4
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000230717 in_array() test avg(10K): 0.000000401466 Tests without hash collisions isset() test avg(10K): 0.000000229979 in_array() test avg(10K): 0.000000403595
Output for 5.4.3
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000242138 in_array() test avg(10K): 0.000000423378 Tests without hash collisions isset() test avg(10K): 0.000000240493 in_array() test avg(10K): 0.000000422716
Output for 5.4.2
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000228786 in_array() test avg(10K): 0.000000423664 Tests without hash collisions isset() test avg(10K): 0.000000233996 in_array() test avg(10K): 0.000000423324
Output for 5.4.1
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000233578 in_array() test avg(10K): 0.000000541097 Tests without hash collisions isset() test avg(10K): 0.000000346935 in_array() test avg(10K): 0.000000651991
Output for 5.4.0
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000246645 in_array() test avg(10K): 0.000000359738 Tests without hash collisions isset() test avg(10K): 0.000000239992 in_array() test avg(10K): 0.000000361180
Output for 5.3.29
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000253202 in_array() test avg(10K): 0.000000434967 Tests without hash collisions isset() test avg(10K): 0.000000260317 in_array() test avg(10K): 0.000000509012
Output for 5.3.28
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000245810 in_array() test avg(10K): 0.000000399463 Tests without hash collisions isset() test avg(10K): 0.000000250399 in_array() test avg(10K): 0.000000401163
Output for 5.3.27
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000243879 in_array() test avg(10K): 0.000000443002 Tests without hash collisions isset() test avg(10K): 0.000000245428 in_array() test avg(10K): 0.000000438845
Output for 5.3.26
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000245453 in_array() test avg(10K): 0.000000470971 Tests without hash collisions isset() test avg(10K): 0.000000248814 in_array() test avg(10K): 0.000000467002
Output for 5.3.25
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000251485 in_array() test avg(10K): 0.000000419158 Tests without hash collisions isset() test avg(10K): 0.000000247598 in_array() test avg(10K): 0.000000420094
Output for 5.3.24
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000239682 in_array() test avg(10K): 0.000000401346 Tests without hash collisions isset() test avg(10K): 0.000000242341 in_array() test avg(10K): 0.000000405669
Output for 5.3.23
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000255825 in_array() test avg(10K): 0.000000385466 Tests without hash collisions isset() test avg(10K): 0.000000247371 in_array() test avg(10K): 0.000000389564
Output for 5.3.22
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000275568 in_array() test avg(10K): 0.000000392882 Tests without hash collisions isset() test avg(10K): 0.000000269544 in_array() test avg(10K): 0.000000395763
Output for 5.3.21
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000256540 in_array() test avg(10K): 0.000000407260 Tests without hash collisions isset() test avg(10K): 0.000000275218 in_array() test avg(10K): 0.000000427115
Output for 5.3.20
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000258638 in_array() test avg(10K): 0.000000517659 Tests without hash collisions isset() test avg(10K): 0.000000261390 in_array() test avg(10K): 0.000000485742
Output for 5.3.19
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000261023 in_array() test avg(10K): 0.000000415677 Tests without hash collisions isset() test avg(10K): 0.000000268161 in_array() test avg(10K): 0.000000457168
Output for 5.3.18
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000266722 in_array() test avg(10K): 0.000000409716 Tests without hash collisions isset() test avg(10K): 0.000000264633 in_array() test avg(10K): 0.000000418818
Output for 5.3.17
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000519185 in_array() test avg(10K): 0.000000841225 Tests without hash collisions isset() test avg(10K): 0.000000427306 in_array() test avg(10K): 0.000000616741
Output for 5.3.16
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000265625 in_array() test avg(10K): 0.000000423712 Tests without hash collisions isset() test avg(10K): 0.000000269282 in_array() test avg(10K): 0.000000434029
Output for 5.3.15
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000268653 in_array() test avg(10K): 0.000000392762 Tests without hash collisions isset() test avg(10K): 0.000000252020 in_array() test avg(10K): 0.000000397778
Output for 5.3.14
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000284295 in_array() test avg(10K): 0.000000435730 Tests without hash collisions isset() test avg(10K): 0.000000280106 in_array() test avg(10K): 0.000000443912
Output for 5.3.13
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000262454 in_array() test avg(10K): 0.000000453208 Tests without hash collisions isset() test avg(10K): 0.000000265729 in_array() test avg(10K): 0.000000444698
Output for 5.3.12
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000283341 in_array() test avg(10K): 0.000000473976 Tests without hash collisions isset() test avg(10K): 0.000000281107 in_array() test avg(10K): 0.000000595284
Output for 5.3.11
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000389830 in_array() test avg(10K): 0.000000653905 Tests without hash collisions isset() test avg(10K): 0.000000365984 in_array() test avg(10K): 0.000000533760
Output for 5.3.10
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000280337 in_array() test avg(10K): 0.000000392119 Tests without hash collisions isset() test avg(10K): 0.000000259602 in_array() test avg(10K): 0.000000400627
Output for 5.3.9
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000453875 in_array() test avg(10K): 0.000000427360 Tests without hash collisions isset() test avg(10K): 0.000000356543 in_array() test avg(10K): 0.000000422597
Output for 5.3.8
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000260188 in_array() test avg(10K): 0.000000387636 Tests without hash collisions isset() test avg(10K): 0.000000261319 in_array() test avg(10K): 0.000000401819
Output for 5.3.7
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000245000 in_array() test avg(10K): 0.000000398962 Tests without hash collisions isset() test avg(10K): 0.000000243902 in_array() test avg(10K): 0.000000402462
Output for 5.3.6
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000249029 in_array() test avg(10K): 0.000000433345 Tests without hash collisions isset() test avg(10K): 0.000000250936 in_array() test avg(10K): 0.000000424016
Output for 5.3.5
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000243736 in_array() test avg(10K): 0.000000393645 Tests without hash collisions isset() test avg(10K): 0.000000247133 in_array() test avg(10K): 0.000000400209
Output for 5.3.4
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000234890 in_array() test avg(10K): 0.000000391785 Tests without hash collisions isset() test avg(10K): 0.000000241113 in_array() test avg(10K): 0.000000395346
Output for 5.3.3
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000274924 in_array() test avg(10K): 0.000000422830 Tests without hash collisions isset() test avg(10K): 0.000000265563 in_array() test avg(10K): 0.000000420976
Output for 5.3.2
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000270155 in_array() test avg(10K): 0.000000426621 Tests without hash collisions isset() test avg(10K): 0.000000268042 in_array() test avg(10K): 0.000000433207
Output for 5.3.1
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000255467 in_array() test avg(10K): 0.000000386897 Tests without hash collisions isset() test avg(10K): 0.000000251174 in_array() test avg(10K): 0.000000385332
Output for 5.3.0
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000257542 in_array() test avg(10K): 0.000000383535 Tests without hash collisions isset() test avg(10K): 0.000000256109 in_array() test avg(10K): 0.000000393832
Output for 5.2.17
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000254633 in_array() test avg(10K): 0.000000359237 Tests without hash collisions isset() test avg(10K): 0.000000249267 in_array() test avg(10K): 0.000000381100
Output for 5.2.16
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000272254 in_array() test avg(10K): 0.000000404327 Tests without hash collisions isset() test avg(10K): 0.000000278878 in_array() test avg(10K): 0.000000417197
Output for 5.2.15
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000283174 in_array() test avg(10K): 0.000000436540 Tests without hash collisions isset() test avg(10K): 0.000000278580 in_array() test avg(10K): 0.000000442743
Output for 5.2.14
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000288229 in_array() test avg(10K): 0.000000422687 Tests without hash collisions isset() test avg(10K): 0.000000279081 in_array() test avg(10K): 0.000000430965
Output for 5.2.13
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000248266 in_array() test avg(10K): 0.000000439521 Tests without hash collisions isset() test avg(10K): 0.000000250471 in_array() test avg(10K): 0.000000465631
Output for 5.2.12
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000291734 in_array() test avg(10K): 0.000000424928 Tests without hash collisions isset() test avg(10K): 0.000000278127 in_array() test avg(10K): 0.000000429749
Output for 5.2.11
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000258901 in_array() test avg(10K): 0.000000417608 Tests without hash collisions isset() test avg(10K): 0.000000283647 in_array() test avg(10K): 0.000000430274
Output for 5.2.10
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000269988 in_array() test avg(10K): 0.000000490858 Tests without hash collisions isset() test avg(10K): 0.000000274861 in_array() test avg(10K): 0.000000496316
Output for 5.2.9
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000335131 in_array() test avg(10K): 0.000000828373 Tests without hash collisions isset() test avg(10K): 0.000000434446 in_array() test avg(10K): 0.000000895178
Output for 5.2.8
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000459121 in_array() test avg(10K): 0.000000496604 Tests without hash collisions isset() test avg(10K): 0.000000395036 in_array() test avg(10K): 0.000000492918
Output for 5.2.7
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000287514 in_array() test avg(10K): 0.000000427551 Tests without hash collisions isset() test avg(10K): 0.000000296199 in_array() test avg(10K): 0.000000435805
Output for 5.2.6
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000296241 in_array() test avg(10K): 0.000000463580 Tests without hash collisions isset() test avg(10K): 0.000000323319 in_array() test avg(10K): 0.000000473046
Output for 5.2.5
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000398366 in_array() test avg(10K): 0.000000451419 Tests without hash collisions isset() test avg(10K): 0.000000398719 in_array() test avg(10K): 0.000000445795
Output for 5.2.4
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000339947 in_array() test avg(10K): 0.000000456474 Tests without hash collisions isset() test avg(10K): 0.000000341582 in_array() test avg(10K): 0.000000447476
Output for 5.2.3
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000302989 in_array() test avg(10K): 0.000000477362 Tests without hash collisions isset() test avg(10K): 0.000000292945 in_array() test avg(10K): 0.000000454819
Output for 5.2.2
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000316842 in_array() test avg(10K): 0.000000631372 Tests without hash collisions isset() test avg(10K): 0.000000436878 in_array() test avg(10K): 0.000000743210
Output for 5.2.1
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000582038 in_array() test avg(10K): 0.000000714993 Tests without hash collisions isset() test avg(10K): 0.000000425184 in_array() test avg(10K): 0.000000586486
Output for 5.2.0
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000289326 in_array() test avg(10K): 0.000000400679 Tests without hash collisions isset() test avg(10K): 0.000000284266 in_array() test avg(10K): 0.000000422406
Output for 5.1.6
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000327811 in_array() test avg(10K): 0.000000436397 Tests without hash collisions isset() test avg(10K): 0.000000323141 in_array() test avg(10K): 0.000000446224
Output for 5.1.5
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000332126 in_array() test avg(10K): 0.000000406330 Tests without hash collisions isset() test avg(10K): 0.000000321782 in_array() test avg(10K): 0.000000425792
Output for 5.1.4
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000281577 in_array() test avg(10K): 0.000000400440 Tests without hash collisions isset() test avg(10K): 0.000000280499 in_array() test avg(10K): 0.000000432026
Output for 5.1.3
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000303490 in_array() test avg(10K): 0.000000392595 Tests without hash collisions isset() test avg(10K): 0.000000306284 in_array() test avg(10K): 0.000000421047
Output for 5.1.2
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000344931 in_array() test avg(10K): 0.000000479341 Tests without hash collisions isset() test avg(10K): 0.000000350237 in_array() test avg(10K): 0.000000593686
Output for 5.1.1
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000400774 in_array() test avg(10K): 0.000000510934 Tests without hash collisions isset() test avg(10K): 0.000000380647 in_array() test avg(10K): 0.000000516272
Output for 5.1.0
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000449440 in_array() test avg(10K): 0.000000523143 Tests without hash collisions isset() test avg(10K): 0.000000437391 in_array() test avg(10K): 0.000000536501
Output for 5.0.5
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000575648 in_array() test avg(10K): 0.000001036390 Tests without hash collisions isset() test avg(10K): 0.000000502527 in_array() test avg(10K): 0.000000837135
Output for 5.0.4
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000390068 in_array() test avg(10K): 0.000000563702 Tests without hash collisions isset() test avg(10K): 0.000000389171 in_array() test avg(10K): 0.000000583863
Output for 5.0.3
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000406425 in_array() test avg(10K): 0.000000597894 Tests without hash collisions isset() test avg(10K): 0.000000428426 in_array() test avg(10K): 0.000000641811
Output for 5.0.2
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000447795 in_array() test avg(10K): 0.000000591409 Tests without hash collisions isset() test avg(10K): 0.000000428641 in_array() test avg(10K): 0.000000623560
Output for 5.0.1
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000397579 in_array() test avg(10K): 0.000000595152 Tests without hash collisions isset() test avg(10K): 0.000000399113 in_array() test avg(10K): 0.000000608099
Output for 5.0.0
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000380363 in_array() test avg(10K): 0.000000549276 Tests without hash collisions isset() test avg(10K): 0.000000382960 in_array() test avg(10K): 0.000000653589
Output for 4.4.9
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000645765 in_array() test avg(10K): 0.000000796880 Tests without hash collisions isset() test avg(10K): 0.000000630000 in_array() test avg(10K): 0.000000810900
Output for 4.4.8
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000642964 in_array() test avg(10K): 0.000000807181 Tests without hash collisions isset() test avg(10K): 0.000000655850 in_array() test avg(10K): 0.000000835200
Output for 4.4.7
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000594659 in_array() test avg(10K): 0.000000798480 Tests without hash collisions isset() test avg(10K): 0.000000650200 in_array() test avg(10K): 0.000000831000
Output for 4.4.6
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000966697 in_array() test avg(10K): 0.000000945695 Tests without hash collisions isset() test avg(10K): 0.000000866500 in_array() test avg(10K): 0.000000914200
Output for 4.4.5
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000658266 in_array() test avg(10K): 0.000000829383 Tests without hash collisions isset() test avg(10K): 0.000000656300 in_array() test avg(10K): 0.000000829250
Output for 4.4.4
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000610961 in_array() test avg(10K): 0.000000769177 Tests without hash collisions isset() test avg(10K): 0.000000607400 in_array() test avg(10K): 0.000000790100
Output for 4.4.3
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000586759 in_array() test avg(10K): 0.000000762976 Tests without hash collisions isset() test avg(10K): 0.000000680850 in_array() test avg(10K): 0.000000817350
Output for 4.4.2
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000662966 in_array() test avg(10K): 0.000000856586 Tests without hash collisions isset() test avg(10K): 0.000000680750 in_array() test avg(10K): 0.000000875000
Output for 4.4.1
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000677668 in_array() test avg(10K): 0.000000899090 Tests without hash collisions isset() test avg(10K): 0.000000660300 in_array() test avg(10K): 0.000000868400
Output for 4.4.0
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000624562 in_array() test avg(10K): 0.000000803780 Tests without hash collisions isset() test avg(10K): 0.000000630450 in_array() test avg(10K): 0.000000832000
Output for 4.3.11
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000699370 in_array() test avg(10K): 0.000000899790 Tests without hash collisions isset() test avg(10K): 0.000000679350 in_array() test avg(10K): 0.000000918050
Output for 4.3.10
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000668967 in_array() test avg(10K): 0.000000821382 Tests without hash collisions isset() test avg(10K): 0.000000648300 in_array() test avg(10K): 0.000000839300
Output for 4.3.9
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000961296 in_array() test avg(10K): 0.000001131013 Tests without hash collisions isset() test avg(10K): 0.000000939700 in_array() test avg(10K): 0.000001148400
Output for 4.3.8
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000945495 in_array() test avg(10K): 0.000001141014 Tests without hash collisions isset() test avg(10K): 0.000000947250 in_array() test avg(10K): 0.000001174350
Output for 4.3.7
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000001074007 in_array() test avg(10K): 0.000001274627 Tests without hash collisions isset() test avg(10K): 0.000001045250 in_array() test avg(10K): 0.000001520200
Output for 4.3.6
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000001045105 in_array() test avg(10K): 0.000001209421 Tests without hash collisions isset() test avg(10K): 0.000001039300 in_array() test avg(10K): 0.000001223850
Output for 4.3.5
Warning: ini_set() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000937194 in_array() test avg(10K): 0.000001168917 Tests without hash collisions isset() test avg(10K): -0.000049044750 in_array() test avg(10K): 0.000001222550
Output for 4.3.4
Warning: ini_set,pcntl_fork() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000983798 in_array() test avg(10K): 0.000001166017 Tests without hash collisions isset() test avg(10K): 0.000000967600 in_array() test avg(10K): 0.000001195750
Output for 4.3.3
Warning: ini_set,pcntl_fork() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000001010301 in_array() test avg(10K): 0.000001228623 Tests without hash collisions isset() test avg(10K): 0.000001051800 in_array() test avg(10K): 0.000001251850
Output for 4.3.2
Warning: ini_set,pcntl_fork() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000001204720 in_array() test avg(10K): 0.000001288629 Tests without hash collisions isset() test avg(10K): 0.000001206650 in_array() test avg(10K): 0.000001364750
Output for 4.3.1
Warning: ini_set,pcntl_fork() has been disabled for security reasons in /in/B1loJ on line 5 Test with hash collisions isset() test avg(10K): 0.000000911791 in_array() test avg(10K): 0.000001097410 Tests without hash collisions isset() test avg(10K): 0.000000895450 in_array() test avg(10K): 0.000001145000
Output for 4.3.0
Test with hash collisions isset() test avg(10K): 0.000000830983 in_array() test avg(10K): 0.000001017502 Tests without hash collisions isset() test avg(10K): 0.000000846850 in_array() test avg(10K): 0.000001120450

preferences:
162.81 ms | 401 KiB | 206 Q