3v4l.org

run code in 300+ PHP versions simultaneously
<?php function compareA($a, $b) { return strcmp(json_encode($a), json_encode($b)); } function compareB($a, $b) { return strcmp(implode(',', $a), implode(',', $b)); } function array_diff_multi($a, $b) { return array_map('json_decode', array_diff(array_map('json_encode', $a), array_map('json_encode', $b))); } function bench_diff($a, $b, $callback) { for ($i = 0; $i < 1000; $i++) { $c = array_udiff($a, $b, $callback); } $start = microtime(true); for ($i = 0; $i < 1000; $i++) { $c = array_udiff($a, $b, $callback); } $end = microtime(true); echo $callback, "\t", ($end - $start) * 1000, ' ms', PHP_EOL; return $c; } $a = array( array('localhost', 11211, 0), array('localhost', 11211, 0), array('localhost', 11212, 0), array('localhost', 11213, 0), array('localhost', 11214, 0), array('localhost', 11214, 0), array('localhost', 11214, 0), array('localhost', 11212, 0), array('other', 11211, 0), array('localhost', 11211, 0), ); $b = array( array('localhost', 11211, 0), array('other', 11211, 0), array('other', 11212, 0), array('localhost', 11212, 0), array('localhost', 11212, 0), array('localhost', 11213, 0), ); $c = bench_diff($a, $b, 'compareA'); $c = bench_diff($a, $b, 'compareB'); for ($i = 0; $i < 1000; $i++) { $c = array_diff_multi($a, $b); } $start = microtime(true); for ($i = 0; $i < 1000; $i++) { $c = array_diff_multi($a, $b); } $end = microtime(true); echo "diff-json\t", ($end - $start) * 1000, ' ms', PHP_EOL; var_export($c);
Output for 7.4.6
compareA 16.727209091187 ms compareB 12.954950332642 ms diff-json 5.4800510406494 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.4.5
compareA 17.574071884155 ms compareB 13.430833816528 ms diff-json 5.357027053833 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.4.4
compareA 19.745111465454 ms compareB 13.375043869019 ms diff-json 6.1571598052979 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.4.3
compareA 31.125068664551 ms compareB 22.547960281372 ms diff-json 9.7839832305908 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.4.2
compareA 37.394046783447 ms compareB 18.202066421509 ms diff-json 6.0498714447021 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.4.1
compareA 18.543004989624 ms compareB 14.270067214966 ms diff-json 5.0389766693115 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.4.0
compareA 30.755043029785 ms compareB 23.867845535278 ms diff-json 10.085821151733 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.3.18
compareA 16.489028930664 ms compareB 12.266159057617 ms diff-json 5.3279399871826 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.3.17
compareA 17.545223236084 ms compareB 13.020992279053 ms diff-json 5.43212890625 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.3.16
compareA 18.169164657593 ms compareB 21.413087844849 ms diff-json 9.3479156494141 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.3.15
compareA 31.258106231689 ms compareB 25.006055831909 ms diff-json 10.576963424683 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.3.14
compareA 17.555952072144 ms compareB 16.649007797241 ms diff-json 5.1379203796387 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.3.13
compareA 17.41886138916 ms compareB 13.812065124512 ms diff-json 5.3040981292725 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.3.12
compareA 17.019033432007 ms compareB 12.58397102356 ms diff-json 5.4731369018555 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.3.11
compareA 26.523113250732 ms compareB 24.002075195312 ms diff-json 9.7470283508301 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.3.10
compareA 17.131805419922 ms compareB 13.721942901611 ms diff-json 5.4941177368164 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.3.9
compareA 16.474008560181 ms compareB 12.83597946167 ms diff-json 5.422830581665 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.3.8
compareA 24.611949920654 ms compareB 15.972852706909 ms diff-json 5.2940845489502 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.3.7
compareA 30.22289276123 ms compareB 22.639036178589 ms diff-json 10.124921798706 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.3.6
compareA 18.458127975464 ms compareB 13.034105300903 ms diff-json 9.0701580047607 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.3.5
compareA 18.109083175659 ms compareB 12.963056564331 ms diff-json 5.8410167694092 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.3.4
compareA 18.42212677002 ms compareB 17.860889434814 ms diff-json 8.7149143218994 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.3.3
compareA 16.350030899048 ms compareB 12.816905975342 ms diff-json 6.4218044281006 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.3.2
compareA 16.712188720703 ms compareB 12.238025665283 ms diff-json 5.1171779632568 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.3.1
compareA 16.474008560181 ms compareB 12.253046035767 ms diff-json 5.403995513916 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.3.0
compareA 17.498016357422 ms compareB 15.001058578491 ms diff-json 5.59401512146 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.31
compareA 16.414165496826 ms compareB 13.581991195679 ms diff-json 6.0489177703857 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.30
compareA 32.376050949097 ms compareB 25.08020401001 ms diff-json 10.313987731934 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.29
compareA 22.156953811646 ms compareB 19.454956054688 ms diff-json 10.812044143677 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.28
compareA 21.516799926758 ms compareB 20.820140838623 ms diff-json 10.864019393921 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.27
compareA 20.631790161133 ms compareB 26.065111160278 ms diff-json 11.261940002441 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.26
compareA 33.746004104614 ms compareB 25.355100631714 ms diff-json 10.463953018188 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.25
compareA 37.002086639404 ms compareB 26.164054870605 ms diff-json 10.824203491211 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.24
compareA 17.518997192383 ms compareB 14.59813117981 ms diff-json 6.3290596008301 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.23
compareA 17.838954925537 ms compareB 14.128923416138 ms diff-json 5.9001445770264 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.22
compareA 17.621040344238 ms compareB 14.875173568726 ms diff-json 6.2828063964844 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.21
compareA 17.982006072998 ms compareB 14.478921890259 ms diff-json 5.6838989257812 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.20
compareA 36.396026611328 ms compareB 26.16810798645 ms diff-json 10.558843612671 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.19
compareA 35.227060317993 ms compareB 24.879932403564 ms diff-json 10.3440284729 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.18
compareA 17.871141433716 ms compareB 14.237880706787 ms diff-json 6.6020488739014 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.17
compareA 20.645141601562 ms compareB 14.734983444214 ms diff-json 6.0539245605469 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.16
compareA 27.966976165771 ms compareB 14.448165893555 ms diff-json 6.6299438476562 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.15
compareA 18.193960189819 ms compareB 13.648986816406 ms diff-json 5.8529376983643 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.14
compareA 17.805099487305 ms compareB 13.469934463501 ms diff-json 5.6090354919434 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.13
compareA 17.146110534668 ms compareB 13.749837875366 ms diff-json 5.648136138916 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.12
compareA 18.046140670776 ms compareB 13.332843780518 ms diff-json 5.422830581665 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.11
compareA 17.397880554199 ms compareB 16.088008880615 ms diff-json 5.59401512146 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.10
compareA 16.855955123901 ms compareB 13.405084609985 ms diff-json 5.375862121582 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.9
compareA 17.140865325928 ms compareB 13.216018676758 ms diff-json 5.4390430450439 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.8
compareA 17.519950866699 ms compareB 13.787031173706 ms diff-json 5.4850578308105 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.7
compareA 17.744779586792 ms compareB 13.446092605591 ms diff-json 5.2189826965332 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.6
compareA 16.705989837646 ms compareB 13.679981231689 ms diff-json 5.324125289917 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.5
compareA 17.932891845703 ms compareB 13.859033584595 ms diff-json 5.6638717651367 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.4
compareA 17.392158508301 ms compareB 14.012813568115 ms diff-json 6.1330795288086 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.3
compareA 18.390893936157 ms compareB 16.160011291504 ms diff-json 5.7830810546875 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.2
compareA 22.954940795898 ms compareB 24.821996688843 ms diff-json 10.597944259644 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.1
compareA 20.529985427856 ms compareB 13.700008392334 ms diff-json 5.5351257324219 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.2.0
compareA 16.275882720947 ms compareB 13.835906982422 ms diff-json 5.3801536560059 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.33
compareA 45.49503326416 ms compareB 31.010866165161 ms diff-json 10.163068771362 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.32
compareA 45.916080474854 ms compareB 30.31587600708 ms diff-json 11.798858642578 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.31
compareA 44.812917709351 ms compareB 31.857013702393 ms diff-json 12.686967849731 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.30
compareA 28.066158294678 ms compareB 16.515016555786 ms diff-json 7.0500373840332 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.29
compareA 24.986028671265 ms compareB 17.795085906982 ms diff-json 6.7172050476074 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.28
compareA 43.579816818237 ms compareB 17.303943634033 ms diff-json 6.864070892334 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.27
compareA 43.227195739746 ms compareB 29.355049133301 ms diff-json 11.120080947876 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.26
compareA 27.404069900513 ms compareB 17.07911491394 ms diff-json 6.7181587219238 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.25
compareA 26.355028152466 ms compareB 16.037940979004 ms diff-json 7.5631141662598 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.24
compareA 25.988101959229 ms compareB 16.877174377441 ms diff-json 6.8190097808838 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.23
compareA 24.824142456055 ms compareB 16.262054443359 ms diff-json 6.3481330871582 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.22
compareA 25.88415145874 ms compareB 16.102075576782 ms diff-json 8.6607933044434 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.21
compareA 24.631977081299 ms compareB 16.808032989502 ms diff-json 6.7069530487061 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.20
compareA 26.640176773071 ms compareB 16.129970550537 ms diff-json 6.4420700073242 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.19
compareA 26.957988739014 ms compareB 16.46614074707 ms diff-json 6.7448616027832 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.18
compareA 24.037837982178 ms compareB 15.969038009644 ms diff-json 6.4749717712402 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.17
compareA 30.674934387207 ms compareB 21.740913391113 ms diff-json 6.8440437316895 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.16
compareA 24.91307258606 ms compareB 16.04700088501 ms diff-json 6.7400932312012 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.15
compareA 38.98811340332 ms compareB 16.863107681274 ms diff-json 7.2999000549316 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.14
compareA 26.76796913147 ms compareB 19.055128097534 ms diff-json 7.4081420898438 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.13
compareA 26.591062545776 ms compareB 18.273830413818 ms diff-json 6.4578056335449 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.12
compareA 33.177852630615 ms compareB 38.895845413208 ms diff-json 8.0580711364746 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.11
compareA 33.445119857788 ms compareB 19.248008728027 ms diff-json 7.2078704833984 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.10
compareA 41.193008422852 ms compareB 28.079986572266 ms diff-json 7.4448585510254 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.9
compareA 31.381845474243 ms compareB 20.514965057373 ms diff-json 10.128974914551 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.8
compareA 29.314041137695 ms compareB 20.186901092529 ms diff-json 8.591890335083 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.7
compareA 30.699014663696 ms compareB 20.952939987183 ms diff-json 7.2171688079834 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.6
compareA 27.734994888306 ms compareB 17.861127853394 ms diff-json 7.1790218353271 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.5
compareA 33.96201133728 ms compareB 19.589900970459 ms diff-json 6.6609382629395 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.4
compareA 39.238929748535 ms compareB 31.325101852417 ms diff-json 13.561964035034 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.3
compareA 24.826049804688 ms compareB 17.522096633911 ms diff-json 6.9179534912109 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.2
compareA 42.684078216553 ms compareB 16.638040542603 ms diff-json 11.124134063721 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.1
compareA 30.816078186035 ms compareB 18.867015838623 ms diff-json 7.0888996124268 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.1.0
compareA 29.294013977051 ms compareB 18.185138702393 ms diff-json 7.159948348999 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.33
compareA 25.562047958374 ms compareB 17.777919769287 ms diff-json 7.3440074920654 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.32
compareA 27.42600440979 ms compareB 20.56884765625 ms diff-json 7.2698593139648 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.31
compareA 25.702953338623 ms compareB 17.262935638428 ms diff-json 6.7789554595947 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.30
compareA 25.874853134155 ms compareB 16.574144363403 ms diff-json 6.6630840301514 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.29
compareA 25.61092376709 ms compareB 19.144058227539 ms diff-json 6.5979957580566 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.28
compareA 30.375957489014 ms compareB 16.026973724365 ms diff-json 6.8469047546387 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.27
compareA 37.15705871582 ms compareB 19.407987594604 ms diff-json 7.0462226867676 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.26
compareA 29.617786407471 ms compareB 20.747184753418 ms diff-json 9.3557834625244 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.25
compareA 26.535034179688 ms compareB 16.556978225708 ms diff-json 6.8490505218506 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.24
compareA 26.674032211304 ms compareB 18.918037414551 ms diff-json 7.2479248046875 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.23
compareA 27.750015258789 ms compareB 17.851829528809 ms diff-json 6.7729949951172 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.22
compareA 41.239023208618 ms compareB 19.114971160889 ms diff-json 8.7499618530273 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.21
compareA 27.338981628418 ms compareB 18.487930297852 ms diff-json 7.0259571075439 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.20
compareA 30.924081802368 ms compareB 19.794940948486 ms diff-json 7.4560642242432 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.19
compareA 30.125141143799 ms compareB 18.090009689331 ms diff-json 8.9371204376221 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.18
compareA 35.775899887085 ms compareB 22.86696434021 ms diff-json 17.903089523315 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.17
compareA 27.21095085144 ms compareB 18.084049224854 ms diff-json 7.1201324462891 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.16
compareA 25.466203689575 ms compareB 18.965005874634 ms diff-json 6.7341327667236 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.15
compareA 28.395891189575 ms compareB 20.911931991577 ms diff-json 6.7760944366455 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.14
compareA 33.480167388916 ms compareB 25.029897689819 ms diff-json 6.8550109863281 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.13
compareA 33.546209335327 ms compareB 19.085884094238 ms diff-json 7.2190761566162 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.12
compareA 33.339977264404 ms compareB 16.406059265137 ms diff-json 6.7801475524902 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.11
compareA 26.360988616943 ms compareB 17.868041992188 ms diff-json 6.493091583252 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.10
compareA 41.968107223511 ms compareB 19.076108932495 ms diff-json 7.4698925018311 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.9
compareA 39.690971374512 ms compareB 17.559051513672 ms diff-json 7.8909397125244 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.8
compareA 29.638051986694 ms compareB 34.672975540161 ms diff-json 8.6379051208496 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.7
compareA 26.169061660767 ms compareB 21.620988845825 ms diff-json 9.8130702972412 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.6
compareA 25.231122970581 ms compareB 18.952131271362 ms diff-json 6.5360069274902 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.5
compareA 25.352001190186 ms compareB 20.133018493652 ms diff-json 6.5150260925293 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.4
compareA 25.044918060303 ms compareB 20.716905593872 ms diff-json 6.976842880249 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.3
compareA 27.180194854736 ms compareB 18.260955810547 ms diff-json 6.8349838256836 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.2
compareA 25.166988372803 ms compareB 18.656969070435 ms diff-json 6.4730644226074 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.1
compareA 25.306940078735 ms compareB 19.154071807861 ms diff-json 6.8550109863281 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 7.0.0
compareA 39.175987243652 ms compareB 21.567106246948 ms diff-json 7.4729919433594 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.40
compareA 66.038131713867 ms compareB 61.75708770752 ms diff-json 17.016887664795 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.39
compareA 64.362049102783 ms compareB 60.710906982422 ms diff-json 17.298936843872 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.38
compareA 67.562818527222 ms compareB 59.794902801514 ms diff-json 17.982006072998 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.37
compareA 70.099115371704 ms compareB 65.485954284668 ms diff-json 19.307136535645 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.36
compareA 72.896957397461 ms compareB 65.501928329468 ms diff-json 21.383047103882 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.35
compareA 126.48582458496 ms compareB 98.960876464844 ms diff-json 23.464918136597 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.34
compareA 72.957992553711 ms compareB 63.581943511963 ms diff-json 17.309904098511 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.33
compareA 62.27707862854 ms compareB 58.934926986694 ms diff-json 16.483068466187 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.32
compareA 72.804927825928 ms compareB 74.620008468628 ms diff-json 20.164966583252 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.31
compareA 67.742824554443 ms compareB 70.636987686157 ms diff-json 17.646074295044 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.30
compareA 79.5738697052 ms compareB 78.655958175659 ms diff-json 22.584915161133 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.29
compareA 68.410158157349 ms compareB 95.534086227417 ms diff-json 36.04793548584 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.28
compareA 81.886053085327 ms compareB 62.646865844727 ms diff-json 16.829967498779 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.27
compareA 85.52098274231 ms compareB 78.524112701416 ms diff-json 18.872022628784 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.26
compareA 67.427158355713 ms compareB 63.683986663818 ms diff-json 19.809007644653 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.25
compareA 81.202030181885 ms compareB 63.79508972168 ms diff-json 20.307064056396 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.24
compareA 61.718940734863 ms compareB 77.371835708618 ms diff-json 30.467987060547 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.23
compareA 65.377950668335 ms compareB 66.748142242432 ms diff-json 21.156072616577 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.22
compareA 77.974081039429 ms compareB 57.589054107666 ms diff-json 17.27294921875 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.21
compareA 61.884164810181 ms compareB 59.486865997314 ms diff-json 17.849922180176 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.20
compareA 60.109853744507 ms compareB 67.034959793091 ms diff-json 25.076866149902 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.19
compareA 61.861038208008 ms compareB 56.581020355225 ms diff-json 16.788005828857 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.18
compareA 67.25811958313 ms compareB 76.854944229126 ms diff-json 20.426988601685 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.17
compareA 63.823938369751 ms compareB 71.758985519409 ms diff-json 17.688035964966 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.16
compareA 72.27087020874 ms compareB 58.948993682861 ms diff-json 18.508911132812 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.15
compareA 63.894987106323 ms compareB 59.516906738281 ms diff-json 16.633987426758 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.14
compareA 70.988893508911 ms compareB 62.87407875061 ms diff-json 18.876075744629 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.13
compareA 65.25182723999 ms compareB 58.177947998047 ms diff-json 17.78507232666 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.12
compareA 115.96179008484 ms compareB 101.89700126648 ms diff-json 18.409013748169 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.11
compareA 89.838981628418 ms compareB 68.270921707153 ms diff-json 24.386167526245 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.10
compareA 65.477132797241 ms compareB 60.686826705933 ms diff-json 17.750978469849 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.9
compareA 65.834045410156 ms compareB 59.641122817993 ms diff-json 18.177032470703 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.8
compareA 112.04195022583 ms compareB 97.477912902832 ms diff-json 17.113924026489 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.7
compareA 67.37208366394 ms compareB 61.421871185303 ms diff-json 16.903162002563 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.6
compareA 60.834169387817 ms compareB 58.807849884033 ms diff-json 17.368078231812 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.5
compareA 74.160099029541 ms compareB 58.671951293945 ms diff-json 17.051935195923 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.4
compareA 74.625015258789 ms compareB 58.745145797729 ms diff-json 17.979860305786 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.3
compareA 60.179948806763 ms compareB 54.813146591187 ms diff-json 17.707109451294 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.2
compareA 59.062957763672 ms compareB 56.571006774902 ms diff-json 17.88592338562 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.1
compareA 75.054883956909 ms compareB 65.454006195068 ms diff-json 17.552137374878 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.6.0
compareA 70.241928100586 ms compareB 57.698011398315 ms diff-json 25.134086608887 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.38
compareA 73.004961013794 ms compareB 60.062885284424 ms diff-json 18.885135650635 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.37
compareA 65.292119979858 ms compareB 87.455034255981 ms diff-json 16.541004180908 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.36
compareA 67.017793655396 ms compareB 58.05516242981 ms diff-json 17.164945602417 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.35
compareA 63.724994659424 ms compareB 59.390068054199 ms diff-json 17.086982727051 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.34
compareA 67.305088043213 ms compareB 63.52710723877 ms diff-json 17.417907714844 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.33
compareA 62.644004821777 ms compareB 68.53199005127 ms diff-json 16.978025436401 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.32
compareA 71.096897125244 ms compareB 64.49294090271 ms diff-json 17.842054367065 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.31
compareA 69.938898086548 ms compareB 57.939052581787 ms diff-json 16.833066940308 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.30
compareA 62.479019165039 ms compareB 56.648969650269 ms diff-json 16.855001449585 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.29
compareA 68.594932556152 ms compareB 57.910203933716 ms diff-json 17.980813980103 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.28
compareA 103.74808311462 ms compareB 76.227188110352 ms diff-json 31.597852706909 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.27
compareA 66.950798034668 ms compareB 58.41588973999 ms diff-json 19.016027450562 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.26
compareA 70.882081985474 ms compareB 57.454824447632 ms diff-json 20.104885101318 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.25
compareA 64.942121505737 ms compareB 61.331033706665 ms diff-json 16.944885253906 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.24
compareA 66.637992858887 ms compareB 58.004856109619 ms diff-json 16.751050949097 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.23
compareA 63.444852828979 ms compareB 57.580947875977 ms diff-json 17.130851745605 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.22
compareA 63.97008895874 ms compareB 57.930946350098 ms diff-json 18.765211105347 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.21
compareA 67.777156829834 ms compareB 60.388088226318 ms diff-json 17.646074295044 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.20
compareA 87.368965148926 ms compareB 55.989027023315 ms diff-json 17.068147659302 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.19
compareA 59.951066970825 ms compareB 53.961992263794 ms diff-json 16.566038131714 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.18
compareA 64.836025238037 ms compareB 63.38906288147 ms diff-json 25.071859359741 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.17
compareA 70.175170898438 ms compareB 67.807912826538 ms diff-json 17.750978469849 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.16
compareA 63.228845596313 ms compareB 79.562187194824 ms diff-json 23.289203643799 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.15
compareA 60.648918151855 ms compareB 57.815074920654 ms diff-json 17.66300201416 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.14
compareA 65.968990325928 ms compareB 57.654857635498 ms diff-json 18.011093139648 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.13
compareA 67.178010940552 ms compareB 63.997030258179 ms diff-json 24.528980255127 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.12
compareA 67.023992538452 ms compareB 67.202091217041 ms diff-json 18.06116104126 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.11
compareA 82.907915115356 ms compareB 72.307109832764 ms diff-json 18.211126327515 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.10
compareA 115.24701118469 ms compareB 59.536933898926 ms diff-json 19.327163696289 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.9
compareA 71.465969085693 ms compareB 73.379993438721 ms diff-json 19.170999526978 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.8
compareA 78.727006912231 ms compareB 67.387819290161 ms diff-json 19.858837127686 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.7
compareA 72.532892227173 ms compareB 61.766147613525 ms diff-json 18.866062164307 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.6
compareA 70.076942443848 ms compareB 59.248924255371 ms diff-json 17.935991287231 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.5
compareA 70.617914199829 ms compareB 59.51189994812 ms diff-json 17.791986465454 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.4
compareA 64.188957214355 ms compareB 59.010028839111 ms diff-json 18.17798614502 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.3
compareA 62.865018844604 ms compareB 58.861970901489 ms diff-json 17.662048339844 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.2
compareA 62.881946563721 ms compareB 64.494848251343 ms diff-json 30.652046203613 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.1
compareA 61.667919158936 ms compareB 58.037996292114 ms diff-json 17.224073410034 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.5.0
compareA 61.182975769043 ms compareB 64.450025558472 ms diff-json 17.444133758545 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.45
compareA 76.059818267822 ms compareB 61.515092849731 ms diff-json 18.288135528564 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.44
compareA 68.663835525513 ms compareB 62.259912490845 ms diff-json 22.92799949646 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.43
compareA 69.530963897705 ms compareB 63.129186630249 ms diff-json 17.21715927124 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.42
compareA 72.173118591309 ms compareB 63.216209411621 ms diff-json 16.810894012451 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.41
compareA 86.622953414917 ms compareB 58.939933776855 ms diff-json 18.362998962402 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.40
compareA 60.934066772461 ms compareB 64.864873886108 ms diff-json 16.804218292236 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.39
compareA 66.277980804443 ms compareB 76.963901519775 ms diff-json 24.949073791504 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.38
compareA 69.087982177734 ms compareB 67.239999771118 ms diff-json 17.675876617432 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.37
compareA 62.654972076416 ms compareB 60.693025588989 ms diff-json 16.864061355591 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.36
compareA 81.740140914917 ms compareB 61.070919036865 ms diff-json 17.011165618896 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.35
compareA 65.988063812256 ms compareB 57.717084884644 ms diff-json 21.139860153198 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.34
compareA 66.478967666626 ms compareB 71.893930435181 ms diff-json 17.230987548828 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.33
compareA 64.486026763916 ms compareB 63.514947891235 ms diff-json 17.829895019531 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.32
compareA 65.973997116089 ms compareB 75.278043746948 ms diff-json 18.746137619019 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.31
compareA 66.533088684082 ms compareB 62.594175338745 ms diff-json 17.926931381226 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.30
compareA 76.11608505249 ms compareB 67.016839981079 ms diff-json 19.863128662109 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.29
compareA 76.673984527588 ms compareB 68.977117538452 ms diff-json 23.389101028442 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.28
compareA 81.71010017395 ms compareB 67.367076873779 ms diff-json 21.005153656006 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.27
compareA 78.402996063232 ms compareB 60.214042663574 ms diff-json 17.578840255737 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.26
compareA 64.93091583252 ms compareB 62.799215316772 ms diff-json 17.181873321533 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.25
compareA 71.253061294556 ms compareB 65.237998962402 ms diff-json 19.783973693848 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.24
compareA 81.622838973999 ms compareB 63.614130020142 ms diff-json 20.654201507568 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.23
compareA 76.611042022705 ms compareB 65.397977828979 ms diff-json 20.010948181152 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.22
compareA 62.788963317871 ms compareB 60.769081115723 ms diff-json 17.542839050293 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.21
compareA 71.577072143555 ms compareB 65.936803817749 ms diff-json 18.213033676147 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.20
compareA 65.845012664795 ms compareB 61.643838882446 ms diff-json 17.888069152832 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.19
compareA 63.400983810425 ms compareB 60.325145721436 ms diff-json 16.725063323975 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.18
compareA 64.804077148438 ms compareB 61.017036437988 ms diff-json 17.179012298584 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.17
compareA 66.007137298584 ms compareB 60.261964797974 ms diff-json 17.58599281311 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.16
compareA 68.460941314697 ms compareB 104.97307777405 ms diff-json 32.81307220459 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.15
compareA 115.159034729 ms compareB 173.70009422302 ms diff-json 37.595987319946 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.14
compareA 90.893030166626 ms compareB 75.263023376465 ms diff-json 23.612022399902 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.13
compareA 84.379911422729 ms compareB 69.370985031128 ms diff-json 20.66707611084 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.12
compareA 74.244022369385 ms compareB 81.170082092285 ms diff-json 20.530939102173 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.11
compareA 79.460144042969 ms compareB 67.367076873779 ms diff-json 18.081188201904 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.10
compareA 123.73995780945 ms compareB 101.7599105835 ms diff-json 20.442962646484 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.9
compareA 101.34887695312 ms compareB 65.248966217041 ms diff-json 20.642995834351 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.8
compareA 82.148790359497 ms compareB 94.52486038208 ms diff-json 34.178972244263 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.7
compareA 69.447040557861 ms compareB 99.65705871582 ms diff-json 19.140005111694 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.6
compareA 70.122957229614 ms compareB 61.77806854248 ms diff-json 19.561052322388 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.5
compareA 72.228908538818 ms compareB 71.587085723877 ms diff-json 25.984048843384 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.4
compareA 79.164028167725 ms compareB 81.939935684204 ms diff-json 20.857810974121 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.3
compareA 95.053911209106 ms compareB 80.398082733154 ms diff-json 21.173000335693 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.2
compareA 73.726892471313 ms compareB 70.950031280518 ms diff-json 18.882036209106 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.1
compareA 71.153879165649 ms compareB 70.01805305481 ms diff-json 44.238090515137 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.4.0
compareA 92.134952545166 ms compareB 69.972991943359 ms diff-json 20.852088928223 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.29
compareA 145.60699462891 ms compareB 64.038038253784 ms diff-json 17.97890663147 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.28
compareA 133.04710388184 ms compareB 63.110113143921 ms diff-json 17.802000045776 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.27
compareA 156.70704841614 ms compareB 61.67197227478 ms diff-json 17.101049423218 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.26
compareA 136.2030506134 ms compareB 65.866231918335 ms diff-json 16.97301864624 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.25
compareA 306.8151473999 ms compareB 103.58500480652 ms diff-json 31.646013259888 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.24
compareA 254.16302680969 ms compareB 110.84985733032 ms diff-json 32.500982284546 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.23
compareA 182.58810043335 ms compareB 70.708990097046 ms diff-json 18.99790763855 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.22
compareA 151.10206604004 ms compareB 77.58092880249 ms diff-json 19.902944564819 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.21
compareA 143.71919631958 ms compareB 65.951824188232 ms diff-json 16.985893249512 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.20
compareA 142.68708229065 ms compareB 68.486928939819 ms diff-json 17.631053924561 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.19
compareA 159.3701839447 ms compareB 89.792013168335 ms diff-json 21.379947662354 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.18
compareA 207.51905441284 ms compareB 75.712919235229 ms diff-json 29.160022735596 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.17
compareA 148.15902709961 ms compareB 66.09582901001 ms diff-json 17.270803451538 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.16
compareA 157.73010253906 ms compareB 77.140092849731 ms diff-json 21.730899810791 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.15
compareA 150.89917182922 ms compareB 65.665006637573 ms diff-json 17.926931381226 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.14
compareA 175.24814605713 ms compareB 81.61187171936 ms diff-json 20.13111114502 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.13
compareA 313.57502937317 ms compareB 157.61613845825 ms diff-json 42.686939239502 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.12
compareA 187.57200241089 ms compareB 80.970048904419 ms diff-json 22.039890289307 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.11
compareA 180.55820465088 ms compareB 71.752071380615 ms diff-json 20.95103263855 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.10
compareA 189.27502632141 ms compareB 80.36208152771 ms diff-json 18.918991088867 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.9
compareA 145.49517631531 ms compareB 68.275213241577 ms diff-json 18.189907073975 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.8
compareA 148.75221252441 ms compareB 89.073896408081 ms diff-json 18.074989318848 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.7
compareA 139.71209526062 ms compareB 65.336942672729 ms diff-json 16.871929168701 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.6
compareA 138.57507705688 ms compareB 67.961931228638 ms diff-json 17.500162124634 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.5
compareA 179.22115325928 ms compareB 69.839000701904 ms diff-json 19.506216049194 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.4
compareA 161.08703613281 ms compareB 116.49107933044 ms diff-json 37.851095199585 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.3
compareA 167.04201698303 ms compareB 76.359033584595 ms diff-json 18.795967102051 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.2
compareA 233.49905014038 ms compareB 82.721948623657 ms diff-json 23.433208465576 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.1
compareA 172.96504974365 ms compareB 99.238157272339 ms diff-json 20.709037780762 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.3.0
compareA 160.92920303345 ms compareB 82.450866699219 ms diff-json 17.867088317871 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.2.17
compareA 133.07619094849 ms compareB 60.945987701416 ms diff-json 14.855146408081 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.2.16
compareA 161.77701950073 ms compareB 63.601016998291 ms diff-json 15.079021453857 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.2.15
compareA 176.10716819763 ms compareB 69.966077804565 ms diff-json 16.385078430176 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.2.14
compareA 160.39299964905 ms compareB 73.302030563354 ms diff-json 15.513896942139 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.2.13
compareA 162.68515586853 ms compareB 82.779169082642 ms diff-json 17.286062240601 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.2.12
compareA 152.15015411377 ms compareB 65.823078155518 ms diff-json 16.607999801636 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.2.11
compareA 155.01308441162 ms compareB 70.003032684326 ms diff-json 18.568992614746 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.2.10
compareA 265.8851146698 ms compareB 69.89598274231 ms diff-json 16.144037246704 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.2.9
compareA 162.70208358765 ms compareB 65.824031829834 ms diff-json 16.642093658447 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.2.8
compareA 197.34501838684 ms compareB 86.538791656494 ms diff-json 16.088962554932 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.2.7
compareA 157.99808502197 ms compareB 67.973852157593 ms diff-json 15.528917312622 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.2.6
compareA 152.37617492676 ms compareB 67.377090454102 ms diff-json 16.095161437988 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.2.5
compareA 164.92915153503 ms compareB 67.58189201355 ms diff-json 17.153978347778 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.2.4
compareA 155.96103668213 ms compareB 63.856840133667 ms diff-json 17.082929611206 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.2.3
compareA 159.2001914978 ms compareB 63.89594078064 ms diff-json 16.000986099243 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.2.2
compareA 85.194826126099 ms compareB 105.39197921753 ms diff-json 19.052982330322 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.2.1
compareA 83.513021469116 ms compareB 77.054023742676 ms diff-json 15.871047973633 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.2.0
compareA 70.343971252441 ms compareB 91.588973999023 ms diff-json 16.518115997314 ms array ( 4 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 5 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), 6 => array ( 0 => 'localhost', 1 => 11214, 2 => 0, ), )
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6
Fatal error: Call to undefined function json_encode() in /in/OfTLK on line 4
Process exited with code 255.
Output for 4.4.5 - 4.4.9
Fatal error: Call to undefined function: array_udiff() in /in/OfTLK on line 17
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.4
Fatal error: Call to undefined function: array_udiff() in /in/OfTLK on line 17
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Call to undefined function: array_udiff() in /in/OfTLK on line 17

preferences:
265.73 ms | 401 KiB | 340 Q