3v4l.org

run code in 300+ PHP versions simultaneously
<?php function returnTime(callable $function, int $repeat = 100) { $tests = []; for ($i = 0; $i < $repeat; ++$i) { $startTime = microtime(true); $function(); $endTime = microtime(true); $tests[] = $endTime - $startTime; } // Representing the average return 1000 * array_sum($tests) / $repeat; } $array = array_fill(0, 500000, 1); echo "Duration of array_slice() + key(): ", returnTime(function() use ($array) { $lastKey = key(array_slice($array, -1, 1, true)); }); echo PHP_EOL; echo "Duration of end() + key(): " , returnTime(function() use ($array){ end($array); $lastKey = key($array); }); echo PHP_EOL; echo "Duration of array_key_last(): " , returnTime(function() use ($array){ $lastKey = array_key_last($array); });
Output for 7.4.3
Duration of array_slice() + key(): 1.6882514953613 Duration of end() + key(): 17.931134700775 Duration of array_key_last(): 0.00026702880859375
Output for 7.4.2
Duration of array_slice() + key(): 1.9101548194885 Duration of end() + key(): 16.546788215637 Duration of array_key_last(): 0.00014066696166992
Output for 7.4.1
Duration of array_slice() + key(): 1.5941214561462 Duration of end() + key(): 16.491637229919 Duration of array_key_last(): 0.00012874603271484
Output for 7.4.0
Duration of array_slice() + key(): 1.7032146453857 Duration of end() + key(): 17.293314933777 Duration of array_key_last(): 0.00014781951904297
Output for 7.3.15
Duration of array_slice() + key(): 1.6164827346802 Duration of end() + key(): 16.47176027298 Duration of array_key_last(): 0.00015020370483398
Output for 7.3.14
Duration of array_slice() + key(): 1.5694880485535 Duration of end() + key(): 15.894861221313 Duration of array_key_last(): 0.00060081481933594
Output for 7.3.13
Duration of array_slice() + key(): 1.8543028831482 Duration of end() + key(): 16.027734279633 Duration of array_key_last(): 0.00020265579223633
Output for 7.3.12
Duration of array_slice() + key(): 1.6761374473572 Duration of end() + key(): 16.594839096069 Duration of array_key_last(): 0.00016927719116211
Output for 7.3.11
Duration of array_slice() + key(): 1.650824546814 Duration of end() + key(): 16.71026468277 Duration of array_key_last(): 0.00021696090698242
Output for 7.3.10
Duration of array_slice() + key(): 2.0195388793945 Duration of end() + key(): 20.385212898254 Duration of array_key_last(): 0.00026941299438477
Output for 7.3.9
Duration of array_slice() + key(): 1.6548705101013 Duration of end() + key(): 17.42564201355 Duration of array_key_last(): 0.00020265579223633
Output for 7.3.8
Duration of array_slice() + key(): 1.7237448692322 Duration of end() + key(): 16.834847927094 Duration of array_key_last(): 0.00019073486328125
Output for 7.3.7
Duration of array_slice() + key(): 1.6913938522339 Duration of end() + key(): 16.854152679443 Duration of array_key_last(): 0.00053167343139648
Output for 7.3.6
Duration of array_slice() + key(): 1.8531799316406 Duration of end() + key(): 19.594264030457 Duration of array_key_last(): 0.00027656555175781
Output for 7.3.5
Duration of array_slice() + key(): 1.4679360389709 Duration of end() + key(): 16.823337078094 Duration of array_key_last(): 0.00024795532226562
Output for 7.3.4
Duration of array_slice() + key(): 1.7253232002258 Duration of end() + key(): 17.805576324463 Duration of array_key_last(): 0.00018119812011719
Output for 7.3.3
Duration of array_slice() + key(): 1.6237187385559 Duration of end() + key(): 17.647686004639 Duration of array_key_last(): 0.00016927719116211
Output for 7.3.2
Duration of array_slice() + key(): 1.7760229110718 Duration of end() + key():
Process exited with code 137.
Output for 7.3.1
Duration of array_slice() + key(): 1.4959716796875 Duration of end() + key(): 11.455035209656 Duration of array_key_last(): 0.00034093856811523
Output for 7.3.0
Duration of array_slice() + key(): 3.0619502067566 Duration of end() + key(): 9.7692155838013 Duration of array_key_last(): 0.00031232833862305
Output for 7.2.28
Duration of array_slice() + key(): 1.5591239929199 Duration of end() + key(): 17.31436252594 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.2.27
Duration of array_slice() + key(): 1.5072441101074 Duration of end() + key(): 16.203560829163 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.2.26
Duration of array_slice() + key(): 1.8209505081177 Duration of end() + key(): 19.604828357697 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.2.25
Duration of array_slice() + key(): 1.6178345680237 Duration of end() + key(): 17.125554084778 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.2.24
Duration of array_slice() + key(): 1.6240572929382 Duration of end() + key(): 16.378326416016 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.2.23
Duration of array_slice() + key(): 2.1450686454773 Duration of end() + key(): 16.955595016479 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.2.22
Duration of array_slice() + key(): 1.6537070274353 Duration of end() + key(): 16.939120292664 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.2.21
Duration of array_slice() + key(): 1.5120482444763 Duration of end() + key(): 17.524085044861 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.2.20
Duration of array_slice() + key(): 1.6208291053772 Duration of end() + key(): 16.620314121246 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.2.19
Duration of array_slice() + key(): 1.5599393844604 Duration of end() + key(): 17.667315006256 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.2.18
Duration of array_slice() + key(): 1.7572975158691 Duration of end() + key(): 16.201374530792 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.2.17
Duration of array_slice() + key(): 2.157609462738 Duration of end() + key(): 17.215950489044 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.2.16
Duration of array_slice() + key(): 1.7447781562805 Duration of end() + key(): 18.149743080139 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.2.15
Duration of array_slice() + key(): 1.7097949981689 Duration of end() + key(): 18.384683132172 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.2.14
Duration of array_slice() + key(): 1.5859222412109 Duration of end() + key(): 8.246796131134 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.2.13
Duration of array_slice() + key(): 2.1246480941772 Duration of end() + key(): 8.9704585075378 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.2.12
Duration of array_slice() + key(): 1.8734121322632 Duration of end() + key(): 9.0212631225586 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.2.11
Duration of array_slice() + key(): 2.1112751960754 Duration of end() + key(): 9.063024520874 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.2.10
Duration of array_slice() + key(): 2.0893740653992 Duration of end() + key(): 9.3527555465698 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.2.9
Duration of array_slice() + key(): 1.9918608665466 Duration of end() + key(): 9.0635776519775 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.2.8
Duration of array_slice() + key(): 1.9473361968994 Duration of end() + key(): 9.4189500808716 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.2.7
Duration of array_slice() + key(): 1.7563533782959 Duration of end() + key(): 8.8579034805298 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.2.6
Duration of array_slice() + key(): 1.7667555809021 Duration of end() + key(): 8.330659866333 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.2.5
Duration of array_slice() + key(): 1.4952802658081 Duration of end() + key(): 8.8666081428528 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.2.4
Duration of array_slice() + key(): 1.4496850967407 Duration of end() + key(): 9.0700507164001 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.2.3
Duration of array_slice() + key(): 1.5521812438965 Duration of end() + key(): 8.9391136169434 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.2.2
Duration of array_slice() + key(): 1.4104676246643 Duration of end() + key(): 8.9298248291016 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.2.1
Duration of array_slice() + key(): 1.6111779212952 Duration of end() + key(): 8.8474678993225 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.2.0
Duration of array_slice() + key(): 1.6426277160645 Duration of end() + key(): 9.0123581886292 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.33
Duration of array_slice() + key(): 1.8268918991089 Duration of end() + key(): 22.139773368835 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.32
Duration of array_slice() + key(): 1.7255568504333 Duration of end() + key(): 21.55996799469 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.31
Duration of array_slice() + key(): 1.7583775520325 Duration of end() + key():
Process exited with code 137.
Output for 7.1.30
Duration of array_slice() + key(): 1.5399098396301 Duration of end() + key(): 21.669917106628 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.29
Duration of array_slice() + key(): 1.5426087379456 Duration of end() + key(): 21.063070297241 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.28
Duration of array_slice() + key(): 1.5976452827454 Duration of end() + key():
Process exited with code 137.
Output for 7.1.27
Duration of array_slice() + key(): 1.8539071083069 Duration of end() + key():
Process exited with code 137.
Output for 7.1.26
Duration of array_slice() + key(): 2.2365379333496 Duration of end() + key(): 10.401804447174 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.25
Duration of array_slice() + key(): 2.1275925636292 Duration of end() + key(): 9.048707485199 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.24
Duration of array_slice() + key(): 2.0886564254761 Duration of end() + key(): 9.3089246749878 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.23
Duration of array_slice() + key(): 2.2598505020142 Duration of end() + key(): 8.9458751678467 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.22
Duration of array_slice() + key(): 2.1356844902039 Duration of end() + key(): 9.7535586357117 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.21
Duration of array_slice() + key(): 2.0716071128845 Duration of end() + key(): 10.557272434235 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.20
Duration of array_slice() + key(): 2.3945283889771 Duration of end() + key(): 8.9287757873535 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.19
Duration of array_slice() + key(): 1.9132041931152 Duration of end() + key(): 9.6833992004395 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.18
Duration of array_slice() + key(): 2.0898294448853 Duration of end() + key(): 8.9717817306519 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.17
Duration of array_slice() + key(): 1.53559923172 Duration of end() + key(): 9.1328573226929 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.16
Duration of array_slice() + key(): 1.5021014213562 Duration of end() + key(): 9.655659198761 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.15
Duration of array_slice() + key(): 1.6315269470215 Duration of end() + key(): 9.1099429130554 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.14
Duration of array_slice() + key(): 1.5433025360107 Duration of end() + key(): 8.6861038208008 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.13
Duration of array_slice() + key(): 1.6033244132996 Duration of end() + key(): 8.9494633674622 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.12
Duration of array_slice() + key(): 1.7205309867859 Duration of end() + key(): 8.967592716217 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.11
Duration of array_slice() + key(): 1.6324639320374 Duration of end() + key(): 8.6564183235168 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.10
Duration of array_slice() + key(): 1.8588757514954 Duration of end() + key(): 8.5448598861694 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.9
Duration of array_slice() + key(): 1.5154671669006 Duration of end() + key(): 8.9439153671265 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.8
Duration of array_slice() + key(): 1.5896964073181 Duration of end() + key(): 8.1137228012085 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.7
Duration of array_slice() + key(): 1.4878964424133 Duration of end() + key(): 8.6480665206909 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.6
Duration of array_slice() + key(): 1.2226748466492 Duration of end() + key(): 8.5723042488098 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.5
Duration of array_slice() + key(): 1.194326877594 Duration of end() + key(): 8.3375000953674 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.4
Duration of array_slice() + key(): 1.3492918014526 Duration of end() + key(): 8.4360027313232 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.3
Duration of array_slice() + key(): 1.1590456962585 Duration of end() + key(): 8.4056115150452 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.2
Duration of array_slice() + key(): 1.3378071784973 Duration of end() + key(): 8.3579111099243 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.1
Duration of array_slice() + key(): 1.5125393867493 Duration of end() + key(): 8.4455537796021 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.
Output for 7.1.0
Duration of array_slice() + key(): 2.0216512680054 Duration of end() + key(): 8.7632369995117 Duration of array_key_last(): Fatal error: Uncaught Error: Call to undefined function array_key_last() in /in/hO1Yf:34 Stack trace: #0 /in/hO1Yf(10): {closure}() #1 /in/hO1Yf(35): returnTime(Object(Closure)) #2 {main} thrown in /in/hO1Yf on line 34
Process exited with code 255.

preferences:
107.37 ms | 401 KiB | 88 Q