3v4l.org

run code in 300+ PHP versions simultaneously
<?php // Dont' abuse 3v4l $n = 10000; // 空循环时间 $start = microtime(true); for ($i = 0; $i < $n; $i++) { } $finish = microtime(true); $loop_time = $finish - $start; // 普通 $start = microtime(true); for ($i = 0; $i < $n; $i++) { $t = time(); } $finish = microtime(true); $microtime_time = $finish - $start - $loop_time; echo "microtime: $microtime_time \t100%" . PHP_EOL; // 方式一:通过 PHP 实现,时间缓存在静态变量中 class CacheTime { private static $time = 0; public static function getTime() { return self::$time; } // 需要 timer 定时调用 setTime 更新 public static function setTime() { self::$time = microtime(true); } } $start = microtime(true); for ($i = 0; $i < $n; $i++) { $t = CacheTime::getTime(); } $finish = microtime(true); $class_cache_time = $finish - $start - $loop_time; echo "CacheTime: $class_cache_time \t" . ($class_cache_time / $microtime_time * 100) . '%' . PHP_EOL;; // 方式二:通过扩展实现,时间存在 C 的静态/全局变量中,通过定时器更新 $start = microtime(true); for ($i = 0; $i < $n; $i++) { // gc_enabled 直接取 GC_G(gc_enabled),没有参数,接近时间缓存的实现 $t = gc_enabled(); } $finish = microtime(true); $c_cache_time = $finish - $start - $loop_time; echo "cache_time: $c_cache_time \t" . ($c_cache_time / $microtime_time * 100) . '%' . PHP_EOL;
Output for 7.4.10
microtime: 0.00056171417236328 100% CacheTime: 0.0003819465637207 67.996604414261% cache_time: 0.00012588500976562 22.410865874363%
Output for 7.4.9
microtime: 0.00048303604125977 100% CacheTime: 0.00045895576477051 95.014807502468% cache_time: 0.0003199577331543 66.238894373149%
Output for 7.4.8
microtime: 0.00047397613525391 100% CacheTime: 0.00043416023254395 91.599597585513% cache_time: 0.00014805793762207 31.237424547284%
Output for 7.4.7
microtime: 0.00069189071655273 100% CacheTime: 0.00042891502380371 61.991729841489% cache_time: 0.00010800361633301 15.609924190214%
Output for 7.4.6
microtime: 0.00053191184997559 100% CacheTime: 0.00041294097900391 77.633348274316% cache_time: 0.0004730224609375 88.928731510533%
Output for 7.4.5
microtime: 0.00045919418334961 100% CacheTime: 0.00046205520629883 100.6230529595% cache_time: 0.00018501281738281 40.290758047767%
Output for 7.4.4
microtime: 0.00045013427734375 100% CacheTime: 0.00043511390686035 96.66313559322% cache_time: 0.00018215179443359 40.466101694915%
Output for 7.4.3
microtime: 0.00046706199645996 100% CacheTime: 0.0007929801940918 169.78050025523% cache_time: 0.00034213066101074 73.251659009699%
Output for 7.4.2
microtime: 0.00047874450683594 100% CacheTime: 0.00067663192749023 141.33466135458% cache_time: 0.00020194053649902 42.181274900398%
Output for 7.4.1
microtime: 0.00044703483581543 100% CacheTime: 0.00040102005004883 89.706666666667% cache_time: 0.00013995170593262 31.306666666667%
Output for 7.4.0
microtime: 0.00046706199645996 100% CacheTime: 0.00050687789916992 108.52475752935% cache_time: 0.00019097328186035 40.888208269525%
Output for 7.3.22
microtime: 0.0004270076751709 100% CacheTime: 0.00029587745666504 69.29089893914% cache_time: 0.00022196769714355 51.982132886655%
Output for 7.3.21
microtime: 0.00044989585876465 100% CacheTime: 0.00030183792114258 67.090620031797% cache_time: 0.00015497207641602 34.446210916799%
Output for 7.3.20
microtime: 0.00042200088500977 100% CacheTime: 0.00052404403686523 124.18079096045% cache_time: 0.00016403198242188 38.870056497175%
Output for 7.3.19
microtime: 0.00045514106750488 100% CacheTime: 0.00042319297790527 92.980618124673% cache_time: 0.00015807151794434 34.730225248821%
Output for 7.3.18
microtime: 0.0007328987121582 100% CacheTime: 0.00068879127502441 93.981782693559% cache_time: 0.00031375885009766 42.81067013663%
Output for 7.3.17
microtime: 0.00044012069702148 100% CacheTime: 0.00036311149597168 82.502708559047% cache_time: 0.00019431114196777 44.149512459372%
Output for 7.3.16
microtime: 0.00041317939758301 100% CacheTime: 0.00029611587524414 71.667628390075% cache_time: 0.00017333030700684 41.950375072129%
Output for 7.3.15
microtime: 0.00064587593078613 100% CacheTime: 0.00049495697021484 76.633444075305% cache_time: 0.00025200843811035 39.018087855297%
Output for 7.3.14
microtime: 0.00055623054504395 100% CacheTime: 0.00031709671020508 57.008144020574% cache_time: 0.00013995170593262 25.160737248178%
Output for 7.3.13
microtime: 0.00043606758117676 100% CacheTime: 0.00034689903259277 79.551667577911% cache_time: 0.00025296211242676 58.009841443412%
Output for 7.3.12
microtime: 0.00048398971557617 100% CacheTime: 0.00031018257141113 64.088669950739% cache_time: 0.00012326240539551 25.467980295567%
Output for 7.3.11
microtime: 0.0004420280456543 100% CacheTime: 0.00029182434082031 66.019417475728% cache_time: 0.00016903877258301 38.24163969795%
Output for 7.3.10
microtime: 0.00040888786315918 100% CacheTime: 0.0005180835723877 126.7055393586% cache_time: 0.00031805038452148 77.784256559767%
Output for 7.3.9
microtime: 0.00067806243896484 100% CacheTime: 0.00029897689819336 44.092827004219% cache_time: 0.00011110305786133 16.385372714487%
Output for 7.3.8
microtime: 0.00070714950561523 100% CacheTime: 0.00055503845214844 78.489548213082% cache_time: 0.0001220703125 17.26230613621%
Output for 7.3.7
microtime: 0.00043606758117676 100% CacheTime: 0.00033283233642578 76.325861126299% cache_time: 0.0001220703125 27.993439037726%
Output for 7.3.6
microtime: 0.00048708915710449 100% CacheTime: 0.00029897689819336 61.380323054332% cache_time: 0.00012803077697754 26.284875183554%
Output for 7.3.5
microtime: 0.00067424774169922 100% CacheTime: 0.00065422058105469 97.029702970297% cache_time: 0.00024628639221191 36.527581329562%
Output for 7.3.4
microtime: 0.00045490264892578 100% CacheTime: 0.0003359317779541 73.846960167715% cache_time: 0.00017189979553223 37.788259958071%
Output for 7.3.3
microtime: 0.00040698051452637 100% CacheTime: 0.00031495094299316 77.387229056825% cache_time: 0.00010991096496582 27.006444053896%
Output for 7.3.2
microtime: 0.00069999694824219 100% CacheTime: 0.00057816505432129 82.595367847411% cache_time: 0.00022315979003906 31.880108991826%
Output for 7.3.1
microtime: 0.00041604042053223 100% CacheTime: 0.00033879280090332 81.432664756447% cache_time: 0.00012087821960449 29.054441260745%
Output for 7.3.0
microtime: 0.00040102005004883 100% CacheTime: 0.00033712387084961 84.066587395957% cache_time: 0.00013303756713867 33.174791914388%
Output for 7.2.33
microtime: 0.0004429817199707 100% CacheTime: 0.00052785873413086 119.16038751346% cache_time: 0.00014185905456543 32.023681377826%
Output for 7.2.32
microtime: 0.00046205520629883 100% CacheTime: 0.0004429817199707 95.872033023736% cache_time: 0.00015997886657715 34.623323013416%
Output for 7.2.31
microtime: 0.00042819976806641 100% CacheTime: 0.00038003921508789 88.752783964365% cache_time: 0.00013494491577148 31.514476614699%
Output for 7.2.30
microtime: 0.00046110153198242 100% CacheTime: 0.00039100646972656 84.798345398139% cache_time: 0.00015807151794434 34.281282316443%
Output for 7.2.29
microtime: 0.00043821334838867 100% CacheTime: 0.0003969669342041 90.587595212187% cache_time: 9.8228454589844E-5 22.415669205658%
Output for 7.2.28
microtime: 0.00053000450134277 100% CacheTime: 0.00042486190795898 80.161943319838% cache_time: 0.00021195411682129 39.991003148898%
Output for 7.2.27
microtime: 0.00047111511230469 100% CacheTime: 0.00036191940307617 76.821862348178% cache_time: 0.00011396408081055 24.19028340081%
Output for 7.2.26
microtime: 0.00060606002807617 100% CacheTime: 0.00036931037902832 60.936270653029% cache_time: 0.00011825561523438 19.512195121951%
Output for 7.2.25
microtime: 0.00045299530029297 100% CacheTime: 0.00034213066101074 75.526315789474% cache_time: 0.00010395050048828 22.947368421053%
Output for 7.2.24
microtime: 0.00051403045654297 100% CacheTime: 0.00031399726867676 61.0853432282% cache_time: 8.1062316894531E-5 15.769944341373%
Output for 7.2.23
microtime: 0.00046420097351074 100% CacheTime: 0.00044798851013184 96.507447354905% cache_time: 0.00013017654418945 28.043143297381%
Output for 7.2.22
microtime: 0.0004432201385498 100% CacheTime: 0.00048613548278809 109.68262506724% cache_time: 0.00012302398681641 27.756858526089%
Output for 7.2.21
microtime: 0.00046586990356445 100% CacheTime: 0.00050091743469238 107.5230296827% cache_time: 9.4890594482422E-5 20.368474923234%
Output for 7.2.20
microtime: 0.00049996376037598 100% CacheTime: 0.00038790702819824 77.587029089175% cache_time: 0.00011181831359863 22.365283738674%
Output for 7.2.19
microtime: 0.00052809715270996 100% CacheTime: 0.00035309791564941 66.86230248307% cache_time: 0.0001060962677002 20.090293453725%
Output for 7.2.18
microtime: 0.00046682357788086 100% CacheTime: 0.00055861473083496 119.66292134831% cache_time: 0.0001068115234375 22.880490296221%
Output for 7.2.17
microtime: 0.00037074089050293 100% CacheTime: 0.00032973289489746 88.938906752412% cache_time: 6.3896179199219E-5 17.234726688103%
Output for 7.2.16
microtime: 0.00064492225646973 100% CacheTime: 0.00032591819763184 50.536044362292% cache_time: 8.5115432739258E-5 13.197781885397%
Output for 7.2.15
microtime: 0.00073099136352539 100% CacheTime: 0.00072789192199707 99.575994781474% cache_time: 0.00028371810913086 38.812785388128%
Output for 7.2.14
microtime: 0.00044584274291992 100% CacheTime: 0.00039076805114746 87.647058823529% cache_time: 0.00011372566223145 25.508021390374%
Output for 7.2.13
microtime: 0.00062894821166992 100% CacheTime: 0.00069713592529297 110.84154662623% cache_time: 0.00026106834411621 41.508718726308%
Output for 7.2.12
microtime: 0.00047683715820312 100% CacheTime: 0.00034499168395996 72.35% cache_time: 0.00011587142944336 24.3%
Output for 7.2.11
microtime: 0.00050973892211914 100% CacheTime: 0.00035285949707031 69.223573433115% cache_time: 0.00011467933654785 22.497661365762%
Output for 7.2.10
microtime: 0.00076913833618164 100% CacheTime: 0.00072479248046875 94.234345939244% cache_time: 0.00031089782714844 40.421574705518%
Output for 7.2.9
microtime: 0.0004422664642334 100% CacheTime: 0.00045609474182129 103.12668463612% cache_time: 0.00015711784362793 35.525606469003%
Output for 7.2.8
microtime: 0.00049591064453125 100% CacheTime: 0.00037479400634766 75.576923076923% cache_time: 0.00011301040649414 22.788461538462%
Output for 7.2.7
microtime: 0.00068807601928711 100% CacheTime: 0.00074315071105957 108.00415800416% cache_time: 0.00020909309387207 30.38808038808%
Output for 7.2.6
microtime: 0.00049877166748047 100% CacheTime: 0.00039482116699219 79.158699808795% cache_time: 0.00027179718017578 54.493307839388%
Output for 7.2.5
microtime: 0.00069189071655273 100% CacheTime: 0.00077080726623535 111.40592694693% cache_time: 0.0001988410949707 28.738800827016%
Output for 7.2.4
microtime: 0.00078678131103516 100% CacheTime: 0.00071978569030762 91.484848484848% cache_time: 0.00021672248840332 27.545454545455%
Output for 7.2.3
microtime: 0.00076627731323242 100% CacheTime: 0.00077414512634277 101.02675793404% cache_time: 0.00020098686218262 26.228998133167%
Output for 7.2.2
microtime: 0.00066876411437988 100% CacheTime: 0.00032496452331543 48.591800356506% cache_time: 0.00015878677368164 23.743315508021%
Output for 7.2.1
microtime: 0.00067806243896484 100% CacheTime: 0.00068998336791992 101.75808720113% cache_time: 0.00028610229492188 42.194092827004%
Output for 7.2.0
microtime: 0.00044107437133789 100% CacheTime: 0.00036907196044922 83.675675675676% cache_time: 0.00014591217041016 33.081081081081%
Output for 7.1.33
microtime: 0.00083208084106445 100% CacheTime: 0.00042891502380371 51.547277936963% cache_time: 0.00014901161193848 17.908309455587%
Output for 7.1.32
microtime: 0.00078368186950684 100% CacheTime: 0.00095486640930176 121.84362640706% cache_time: 0.00026988983154297 34.438697900821%
Output for 7.1.31
microtime: 0.00050187110900879 100% CacheTime: 0.00063180923461914 125.89073634204% cache_time: 0.00018000602722168 35.866983372922%
Output for 7.1.30
microtime: 0.00045990943908691 100% CacheTime: 0.0006108283996582 132.81493001555% cache_time: 0.00013399124145508 29.134266459305%
Output for 7.1.29
microtime: 0.00072097778320312 100% CacheTime: 0.00044107437133789 61.177248677249% cache_time: 0.00013017654418945 18.055555555556%
Output for 7.1.28
microtime: 0.00082802772521973 100% CacheTime: 0.00077390670776367 93.463864094443% cache_time: 0.00052976608276367 63.979268643824%
Output for 7.1.27
microtime: 0.00080108642578125 100% CacheTime: 0.00075507164001465 94.255952380952% cache_time: 0.00027704238891602 34.583333333333%
Output for 7.1.26
microtime: 0.00046682357788086 100% CacheTime: 0.00079083442687988 169.4075587334% cache_time: 0.00012087821960449 25.893769152196%
Output for 7.1.25
microtime: 0.00081896781921387 100% CacheTime: 0.00050091743469238 61.164483260553% cache_time: 7.7962875366211E-5 9.5196506550218%
Output for 7.1.24
microtime: 0.00043201446533203 100% CacheTime: 0.0003819465637207 88.41059602649% cache_time: 0.00012874603271484 29.801324503311%
Output for 7.1.23
microtime: 0.00045990943908691 100% CacheTime: 0.0003819465637207 83.048211508554% cache_time: 0.00013494491577148 29.341627786418%
Output for 7.1.22
microtime: 0.00043511390686035 100% CacheTime: 0.0004429817199707 101.80821917808% cache_time: 0.0001220703125 28.054794520548%
Output for 7.1.21
microtime: 0.00048327445983887 100% CacheTime: 0.00051498413085938 106.56142081894% cache_time: 0.00019025802612305 39.368524913666%
Output for 7.1.20
microtime: 0.0005190372467041 100% CacheTime: 0.00045013427734375 86.724850711989% cache_time: 0.00046014785766602 88.65411116215%
Output for 7.1.19
microtime: 0.00046801567077637 100% CacheTime: 0.00035881996154785 76.668364747835% cache_time: 0.00012803077697754 27.356087620988%
Output for 7.1.18
microtime: 0.0048627853393555 100% CacheTime: 0.00042295455932617 8.697783879192% cache_time: 0.00017809867858887 3.6624828397725%
Output for 7.1.17
microtime: 0.00087213516235352 100% CacheTime: 0.00093412399291992 107.10770913067% cache_time: 0.00040221214294434 46.11809732094%
Output for 7.1.16
microtime: 0.00043630599975586 100% CacheTime: 0.00036525726318359 83.715846994536% cache_time: 0.0001370906829834 31.420765027322%
Output for 7.1.15
microtime: 0.00065970420837402 100% CacheTime: 0.00068783760070801 104.26454644019% cache_time: 0.00014972686767578 22.696060715576%
Output for 7.1.14
microtime: 0.00071907043457031 100% CacheTime: 0.00070905685424805 98.607427055703% cache_time: 0.00023102760314941 32.128647214854%
Output for 7.1.13
microtime: 0.00048995018005371 100% CacheTime: 0.00043797492980957 89.391727493917% cache_time: 0.00021600723266602 44.087591240876%
Output for 7.1.12
microtime: 0.00046682357788086 100% CacheTime: 0.00044488906860352 95.301327885598% cache_time: 0.00017905235290527 38.355464759959%
Output for 7.1.11
microtime: 0.00087118148803711 100% CacheTime: 0.00066208839416504 75.99890530925% cache_time: 0.00027799606323242 31.910235358511%
Output for 7.1.10
microtime: 0.00086808204650879 100% CacheTime: 0.00080728530883789 92.996429552321% cache_time: 0.00038719177246094 44.603131007965%
Output for 7.1.9
microtime: 0.00077581405639648 100% CacheTime: 0.00086593627929688 111.61647203442% cache_time: 0.00026798248291016 34.542102028273%
Output for 7.1.8
microtime: 0.00089120864868164 100% CacheTime: 0.00068426132202148 76.779026217228% cache_time: 0.00028109550476074 31.540930979133%
Output for 7.1.7
microtime: 0.00029730796813965 100% CacheTime: 0.00015521049499512 52.205292702486% cache_time: -2.4795532226562E-5 -8.3400160384924%
Output for 7.1.6
microtime: 0.00047588348388672 100% CacheTime: 0.00069189071655273 145.39078156313% cache_time: 0.00062179565429688 130.66132264529%
Output for 7.1.5
microtime: 0.00046896934509277 100% CacheTime: 0.0003819465637207 81.443823080834% cache_time: 0.00032591819763184 69.496695475343%
Output for 7.1.4
microtime: 0.00074911117553711 100% CacheTime: 0.0010201930999756 136.1871419478% cache_time: 0.00026226043701172 35.009548058561%
Output for 7.1.3
microtime: 0.00044822692871094 100% CacheTime: 0.00037026405334473 82.606382978723% cache_time: 0.00013303756713867 29.68085106383%
Output for 7.1.2
microtime: 0.0005030632019043 100% CacheTime: 0.00040102005004883 79.715639810427% cache_time: 0.0003502368927002 69.620853080569%
Output for 7.1.1
microtime: 0.00045514106750488 100% CacheTime: 0.00031518936157227 69.25091671032% cache_time: 0.0001072883605957 23.572551073861%
Output for 7.1.0
microtime: 0.00045299530029297 100% CacheTime: 0.00040102005004883 88.526315789474% cache_time: 0.00015711784362793 34.684210526316%
Output for 7.0.33
microtime: 0.0004723072052002 100% CacheTime: 0.0004880428314209 103.33165068147% cache_time: 0.00017929077148438 37.960625946492%
Output for 7.0.32
microtime: 0.00043797492980957 100% CacheTime: 0.00040984153747559 93.576483396843% cache_time: 0.00013017654418945 29.722373434948%
Output for 7.0.31
microtime: 0.0006721019744873 100% CacheTime: 0.00072598457336426 108.01702731465% cache_time: 0.0001990795135498 29.620432777581%
Output for 7.0.30
microtime: 0.00025606155395508 100% CacheTime: 0.00013589859008789 53.072625698324% cache_time: -6.1988830566406E-5 -24.208566108007%
Output for 7.0.29
microtime: 0.00089502334594727 100% CacheTime: 0.00098991394042969 110.60202450719% cache_time: 0.00037598609924316 42.00852424081%
Output for 7.0.28
microtime: 0.00048398971557617 100% CacheTime: 0.00063300132751465 130.7881773399% cache_time: 0.00013208389282227 27.290640394089%
Output for 7.0.27
microtime: 0.00046896934509277 100% CacheTime: 0.00048708915710449 103.86375190646% cache_time: 0.00018596649169922 39.654295882054%
Output for 7.0.26
microtime: 0.00090312957763672 100% CacheTime: 0.00080418586730957 89.044350580781% cache_time: 0.00030922889709473 34.239704329461%
Output for 7.0.25
microtime: 0.00088214874267578 100% CacheTime: 0.000823974609375 93.405405405405% cache_time: 0.00028204917907715 31.972972972973%
Output for 7.0.24
microtime: 0.00091075897216797 100% CacheTime: 0.0010008811950684 109.89528795812% cache_time: 0.00036096572875977 39.633507853403%
Output for 7.0.23
microtime: 0.0010039806365967 100% CacheTime: 0.0010631084442139 105.88933744954% cache_time: 0.00052595138549805 52.386606506768%
Output for 7.0.22
microtime: 0.00087690353393555 100% CacheTime: 0.0013489723205566 153.83360522023% cache_time: 0.00035905838012695 40.94616639478%
Output for 7.0.21
microtime: 0.00086092948913574 100% CacheTime: 0.00097322463989258 113.04347826087% cache_time: 0.00030517578125 35.447244530601%
Output for 7.0.20
microtime: 0.00043487548828125 100% CacheTime: 0.0006251335144043 143.75% cache_time: 0.00016283988952637 37.445175438596%
Output for 7.0.19
microtime: 0.00064396858215332 100% CacheTime: 0.00038313865661621 59.496482784154% cache_time: 0.00015020370483398 23.324694557571%
Output for 7.0.18
microtime: 0.00081110000610352 100% CacheTime: 0.00034117698669434 42.063492063492% cache_time: 8.6069107055664E-5 10.61140505585%
Output for 7.0.17
microtime: 0.00077605247497559 100% CacheTime: 0.00073409080505371 94.592933947773% cache_time: 0.00032281875610352 41.597542242704%
Output for 7.0.16
microtime: 0.00090909004211426 100% CacheTime: 0.00086402893066406 95.043273013375% cache_time: 0.00036716461181641 40.388145816942%
Output for 7.0.15
microtime: 0.00048971176147461 100% CacheTime: 0.00063681602478027 130.03894839338% cache_time: 0.00018000602722168 36.757546251217%
Output for 7.0.14
microtime: 0.00058126449584961 100% CacheTime: 0.00046110153198242 79.327317473339% cache_time: 0.00015020370483398 25.840853158326%
Output for 7.0.13
microtime: 0.00067710876464844 100% CacheTime: 0.00040411949157715 59.683098591549% cache_time: 0.00013327598571777 19.683098591549%
Output for 7.0.12
microtime: 0.00042605400085449 100% CacheTime: 0.00066995620727539 157.24678231673% cache_time: 0.00018000602722168 42.249580302182%
Output for 7.0.11
microtime: 0.00082015991210938 100% CacheTime: 0.00045919418334961 55.988372093023% cache_time: 0.00015902519226074 19.389534883721%
Output for 7.0.10
microtime: 0.00064277648925781 100% CacheTime: 0.00041007995605469 63.79821958457% cache_time: 0.00015497207641602 24.109792284866%
Output for 7.0.9
microtime: 0.00047087669372559 100% CacheTime: 0.00043606758117676 92.607594936709% cache_time: 0.00016593933105469 35.240506329114%
Output for 7.0.8
microtime: 0.00083589553833008 100% CacheTime: 0.0007479190826416 89.475185396463% cache_time: 0.00038480758666992 46.035367940673%
Output for 7.0.7
microtime: 0.0012898445129395 100% CacheTime: 0.00088691711425781 68.761552680222% cache_time: 0.00039196014404297 30.388170055453%
Output for 7.0.6
microtime: 0.0006561279296875 100% CacheTime: 0.00049901008605957 76.053779069767% cache_time: 0.00023198127746582 35.356104651163%
Output for 7.0.5
microtime: 0.00053930282592773 100% CacheTime: 0.00039911270141602 74.005305039788% cache_time: 0.00013518333435059 25.066312997347%
Output for 7.0.4
microtime: 0.00044989585876465 100% CacheTime: 0.00041985511779785 93.322734499205% cache_time: 0.00043320655822754 96.290408055114%
Output for 7.0.3
microtime: 0.00074601173400879 100% CacheTime: 0.00081014633178711 108.59699584532% cache_time: 0.00030207633972168 40.492170022371%
Output for 7.0.2
microtime: 0.000823974609375 100% CacheTime: 0.0011661052703857 141.52199074074% cache_time: 0.00032973289489746 40.017361111111%
Output for 7.0.1
microtime: 0.0010490417480469 100% CacheTime: 0.00091004371643066 86.75% cache_time: 0.00032305717468262 30.795454545455%
Output for 7.0.0
microtime: 0.00054216384887695 100% CacheTime: 0.00057888031005859 106.77220756376% cache_time: 0.00023102760314941 42.612137203166%
Output for 5.6.40
microtime: 0.00072288513183594 100% CacheTime: 0.0013229846954346 183.01451187335% cache_time: 0.00072503089904785 100.29683377309%
Output for 5.6.39
microtime: 0.00075888633728027 100% CacheTime: 0.0012111663818359 159.59786365064% cache_time: 0.00047898292541504 63.116556707509%
Output for 5.6.38
microtime: 0.00075912475585938 100% CacheTime: 0.00092220306396484 121.4824120603% cache_time: 0.00066423416137695 87.5%
Output for 5.6.37
microtime: 0.0014290809631348 100% CacheTime: 0.0017647743225098 123.49015682349% cache_time: 0.00092101097106934 64.447781114448%
Output for 5.6.36
microtime: 0.0012121200561523 100% CacheTime: 0.0013730525970459 113.2769472856% cache_time: 0.00063014030456543 51.986624704957%
Output for 5.6.35
microtime: 0.001514196395874 100% CacheTime: 0.0017991065979004 118.8159344985% cache_time: 0.00081300735473633 53.692331916234%
Output for 5.6.34
microtime: 0.0014801025390625 100% CacheTime: 0.0016922950744629 114.33634020619% cache_time: 0.0008089542388916 54.655283505155%
Output for 5.6.33
microtime: 0.00083184242248535 100% CacheTime: 0.001011848449707 121.63943823445% cache_time: 0.00051093101501465 61.421610776727%
Output for 5.6.32
microtime: 0.00090813636779785 100% CacheTime: 0.0010311603546143 113.54686269362% cache_time: 0.00046229362487793 50.905749540562%
Output for 5.6.31
microtime: 0.00046968460083008 100% CacheTime: 0.001060962677002 225.8883248731% cache_time: 0.00023293495178223 49.593908629442%
Output for 5.6.30
microtime: 0.00087690353393555 100% CacheTime: 0.0011920928955078 135.94344752583% cache_time: 0.00058197975158691 66.36759108211%
Output for 5.6.29
microtime: 0.00084590911865234 100% CacheTime: 0.0011889934539795 140.55806087937% cache_time: 0.00072693824768066 85.935738444194%
Output for 5.6.28
microtime: 0.00072288513183594 100% CacheTime: 0.0010571479797363 146.2401055409% cache_time: 0.00055885314941406 77.308707124011%
Output for 5.6.27
microtime: 0.0015208721160889 100% CacheTime: 0.0017158985137939 112.82332654021% cache_time: 0.00084590911865234 55.620003135288%
Output for 5.6.26
microtime: 0.00075411796569824 100% CacheTime: 0.00088691711425781 117.60986405311% cache_time: 0.00045299530029297 60.069554220677%
Output for 5.6.25
microtime: 0.0007178783416748 100% CacheTime: 0.00094699859619141 131.91630687479% cache_time: 0.00072097778320312 100.43175024909%
Output for 5.6.24
microtime: 0.00099515914916992 100% CacheTime: 0.00098991394042969 99.472927647341% cache_time: 0.00043773651123047 43.986583612841%
Output for 5.6.23
microtime: 0.00089693069458008 100% CacheTime: 0.0009007453918457 100.42530568846% cache_time: 0.0005190372467041 57.868155236576%
Output for 5.6.22
microtime: 0.00082993507385254 100% CacheTime: 0.0010480880737305 126.28555012927% cache_time: 0.00048589706420898 58.546394714163%
Output for 5.6.21
microtime: 0.0015599727630615 100% CacheTime: 0.0014758110046387 94.604921289928% cache_time: 0.00042986869812012 27.556166895919%
Output for 5.6.20
microtime: 0.00087809562683105 100% CacheTime: 0.0007328987121582 83.464566929134% cache_time: 0.0003819465637207 43.497149063264%
Output for 5.6.19
microtime: 0.00080490112304688 100% CacheTime: 0.00089383125305176 111.04857819905% cache_time: 0.00039887428283691 49.555687203791%
Output for 5.6.18
microtime: 0.0015268325805664 100% CacheTime: 0.0017788410186768 116.50530918176% cache_time: 0.0008697509765625 56.964397251718%
Output for 5.6.17
microtime: 0.00079202651977539 100% CacheTime: 0.0009770393371582 123.35942203492% cache_time: 0.00050497055053711 63.756773028296%
Output for 5.6.16
microtime: 0.00049805641174316 100% CacheTime: 0.0010581016540527 212.44614648157% cache_time: 9.2983245849609E-5 18.669219722355%
Output for 5.6.15
microtime: 0.00084805488586426 100% CacheTime: 0.00096678733825684 114.00056227158% cache_time: 0.00044798851013184 52.825414675288%
Output for 5.6.14
microtime: 0.00097370147705078 100% CacheTime: 0.001417875289917 145.61704211557% cache_time: 0.00064277648925781 66.013712047013%
Output for 5.6.13
microtime: 0.0010321140289307 100% CacheTime: 0.0010001659393311 96.904596904597% cache_time: 0.00048017501831055 46.523446523447%
Output for 5.6.12
microtime: 0.00097084045410156 100% CacheTime: 0.001093864440918 112.67190569745% cache_time: 0.00041508674621582 42.755402750491%
Output for 5.6.11
microtime: 0.00079822540283203 100% CacheTime: 0.00092720985412598 116.15890083632% cache_time: 0.00042200088500977 52.867383512545%
Output for 5.6.10
microtime: 0.00082898139953613 100% CacheTime: 0.00098204612731934 118.46419327006% cache_time: 0.00043082237243652 51.97008915732%
Output for 5.6.9
microtime: 0.0012569427490234 100% CacheTime: 0.001544713973999 122.89453717754% cache_time: 0.00075292587280273 59.901365705615%
Output for 5.6.8
microtime: 0.00079202651977539 100% CacheTime: 0.0013458728790283 169.92775436484% cache_time: 0.00046896934509277 59.211318482842%
Output for 5.6.7
microtime: 0.0011858940124512 100% CacheTime: 0.0016818046569824 141.81745074387% cache_time: 0.00070691108703613 59.609971853639%
Output for 5.6.6
microtime: 0.00089406967163086 100% CacheTime: 0.0010397434234619 116.29333333333% cache_time: 0.00085091590881348 95.173333333333%
Output for 5.6.5
microtime: 0.0012831687927246 100% CacheTime: 0.0028340816497803 220.86584912672% cache_time: 0.00095987319946289 74.804905239688%
Output for 5.6.4
microtime: 0.00079202651977539 100% CacheTime: 0.0010130405426025 127.90487658037% cache_time: 0.00050497055053711 63.756773028296%
Output for 5.6.3
microtime: 0.00074505805969238 100% CacheTime: 0.0010390281677246 139.456% cache_time: 0.00044918060302734 60.288%
Output for 5.6.2
microtime: 0.0013659000396729 100% CacheTime: 0.0019068717956543 139.60551579682% cache_time: 0.00092768669128418 67.917612148717%
Output for 5.6.1
microtime: 0.00093603134155273 100% CacheTime: 0.0014359951019287 153.41314314824% cache_time: 0.00049209594726562 52.572592969944%
Output for 5.6.0
microtime: 0.00067281723022461 100% CacheTime: 0.0008857250213623 131.64422395464% cache_time: 0.00043988227844238 65.379163713678%
Output for 5.5.38
microtime: 0.0010819435119629 100% CacheTime: 0.001317024230957 121.72763331864% cache_time: 0.00058794021606445 54.341119435875%
Output for 5.5.37
microtime: 0.001446008682251 100% CacheTime: 0.0017318725585938 119.76916735367% cache_time: 0.00087213516235352 60.313272877164%
Output for 5.5.36
microtime: 0.00087904930114746 100% CacheTime: 0.00087332725524902 99.349064279902% cache_time: 0.00040316581726074 45.863845945213%
Output for 5.5.35
microtime: 0.00078105926513672 100% CacheTime: 0.00094413757324219 120.87912087912% cache_time: 0.00043797492980957 56.074481074481%
Output for 5.5.34
microtime: 0.00058412551879883 100% CacheTime: 0.00077414512634277 132.5306122449% cache_time: 0.0001990795135498 34.081632653061%
Output for 5.5.33
microtime: 0.0014700889587402 100% CacheTime: 0.0042510032653809 289.16639636717% cache_time: 0.00099897384643555 67.953292247811%
Output for 5.5.32
microtime: 0.0009920597076416 100% CacheTime: 0.00092196464538574 92.934390771449% cache_time: 0.00043201446533203 43.547224224946%
Output for 5.5.31
microtime: 0.0016510486602783 100% CacheTime: 0.0016171932220459 97.949458483755% cache_time: 0.00073099136352539 44.274368231047%
Output for 5.5.30
microtime: 0.0008997917175293 100% CacheTime: 0.00089573860168457 99.54954954955% cache_time: 0.00043177604675293 47.986221515633%
Output for 5.5.29
microtime: 0.00081419944763184 100% CacheTime: 0.0010523796081543 129.2532942899% cache_time: 0.00048708915710449 59.824304538799%
Output for 5.5.28
microtime: 0.00075721740722656 100% CacheTime: 0.0010099411010742 133.37531486146% cache_time: 0.00043702125549316 57.714105793451%
Output for 5.5.27
microtime: 0.0010521411895752 100% CacheTime: 0.0012691020965576 120.62089281668% cache_time: 0.0006859302520752 65.19374575119%
Output for 5.5.26
microtime: 0.00093507766723633 100% CacheTime: 0.0011980533599854 128.12340642529% cache_time: 0.00041890144348145 44.798572157063%
Output for 5.5.25
microtime: 0.0008389949798584 100% CacheTime: 0.0015799999237061 188.32054560955% cache_time: 0.0010831356048584 129.09917590224%
Output for 5.5.24
microtime: 0.0020480155944824 100% CacheTime: 0.0017030239105225 83.154831199069% cache_time: 0.00080204010009766 39.161816065192%
Output for 5.5.23
microtime: 0.0015859603881836 100% CacheTime: 0.0017647743225098 111.27480457005% cache_time: 0.00051689147949219 32.591701743836%
Output for 5.5.22
microtime: 0.0012381076812744 100% CacheTime: 0.0014972686767578 120.9320238783% cache_time: 0.00069904327392578 56.460620065473%
Output for 5.5.21
microtime: 0.0007941722869873 100% CacheTime: 0.0012001991271973 151.12578805164% cache_time: 0.00061416625976562 77.334133893726%
Output for 5.5.20
microtime: 0.0013351440429688 100% CacheTime: 0.0015921592712402 119.25% cache_time: 0.00070500373840332 52.803571428571%
Output for 5.5.19
microtime: 0.0048410892486572 100% CacheTime: 0.0020291805267334 41.915784289584% cache_time: 0.00092697143554688 19.147993105147%
Output for 5.5.18
microtime: 0.0012538433074951 100% CacheTime: 0.0018491744995117 147.48050960259% cache_time: 0.00079607963562012 63.491158014832%
Output for 5.5.17
microtime: 0.0023980140686035 100% CacheTime: 0.00080013275146484 33.3664744482% cache_time: 0.00027585029602051 11.503280970372%
Output for 5.5.16
microtime: 0.0015749931335449 100% CacheTime: 0.0018839836120605 119.61852861035% cache_time: 0.00096273422241211 61.126248864668%
Output for 5.5.15
microtime: 0.00075507164001465 100% CacheTime: 0.00091791152954102 121.56615093148% cache_time: 0.0003509521484375 46.47931796653%
Output for 5.5.14
microtime: 0.00075006484985352 100% CacheTime: 0.001133918762207 151.17609663064% cache_time: 0.0004730224609375 63.064208518754%
Output for 5.5.13
microtime: 0.00079703330993652 100% CacheTime: 0.0012819766998291 160.84355369429% cache_time: 0.00041604042053223 52.198623990428%
Output for 5.5.12
microtime: 0.00078177452087402 100% CacheTime: 0.00087594985961914 112.04635559622% cache_time: 0.00043869018554688 56.114669106435%
Output for 5.5.11
microtime: 0.0007789134979248 100% CacheTime: 0.00089693069458008 115.15151515152% cache_time: 0.00048494338989258 62.258953168044%
Output for 5.5.10
microtime: 0.0010740756988525 100% CacheTime: 0.0010800361633301 100.55493895671% cache_time: 0.00073003768920898 67.968923418424%
Output for 5.5.9
microtime: 0.00077104568481445 100% CacheTime: 0.00092506408691406 119.97526283241% cache_time: 0.00042605400085449 55.256648113791%
Output for 5.5.8
microtime: 0.0011098384857178 100% CacheTime: 0.0011329650878906 102.08378088077% cache_time: 0.00046181678771973 41.611170784103%
Output for 5.5.7
microtime: 0.00075602531433105 100% CacheTime: 0.0012290477752686 162.56701356039% cache_time: 0.00041103363037109 54.36770734784%
Output for 5.5.6
microtime: 0.0015411376953125 100% CacheTime: 0.0015649795532227 101.54702970297% cache_time: 0.0010862350463867 70.482673267327%
Output for 5.5.5
microtime: 0.0012021064758301 100% CacheTime: 0.0014770030975342 122.8679095597% cache_time: 0.00079584121704102 66.203887346291%
Output for 5.5.4
microtime: 0.001133918762207 100% CacheTime: 0.0015318393707275 135.09251471825% cache_time: 0.0007789134979248 68.692178301093%
Output for 5.5.3
microtime: 0.00091099739074707 100% CacheTime: 0.00097990036010742 107.5634650615% cache_time: 0.00044775009155273 49.149437320073%
Output for 5.5.2
microtime: 0.00097298622131348 100% CacheTime: 0.001107931137085 113.86914971821% cache_time: 0.00051474571228027 52.903700073511%
Output for 5.5.1
microtime: 0.0012350082397461 100% CacheTime: 0.0015690326690674 127.04633204633% cache_time: 0.00063800811767578 51.660231660232%
Output for 5.5.0
microtime: 0.00071620941162109 100% CacheTime: 0.00060319900512695 84.22103861518% cache_time: 0.00041437149047852 57.856191744341%
Output for 5.4.45
microtime: 0.0010650157928467 100% CacheTime: 0.0011410713195801 107.14125811507% cache_time: 0.00064396858215332 60.465636892769%
Output for 5.4.44
microtime: 0.0010669231414795 100% CacheTime: 0.0012180805206299 114.16759776536% cache_time: 0.00054192543029785 50.793296089385%
Output for 5.4.43
microtime: 0.00084710121154785 100% CacheTime: 0.0010309219360352 121.69997185477% cache_time: 0.00056290626525879 66.450886574726%
Output for 5.4.42
microtime: 0.0013399124145508 100% CacheTime: 0.0010640621185303 79.4128113879% cache_time: 0.00058317184448242 43.523131672598%
Output for 5.4.41
microtime: 0.00087785720825195 100% CacheTime: 0.0013279914855957 151.27648017382% cache_time: 0.00053286552429199 60.700706137968%
Output for 5.4.40
microtime: 0.0010230541229248 100% CacheTime: 0.001143217086792 111.74551386623% cache_time: 0.00046920776367188 45.863435096714%
Output for 5.4.39
microtime: 0.0010108947753906 100% CacheTime: 0.001262903213501 124.92924528302% cache_time: 0.00064897537231445 64.198113207547%
Output for 5.4.38
microtime: 0.0017108917236328 100% CacheTime: 0.0019760131835938 115.49609810479% cache_time: 0.001183032989502 69.147157190635%
Output for 5.4.37
microtime: 0.0011508464813232 100% CacheTime: 0.0015990734100342 138.94758649265% cache_time: 0.00089406967163086 77.688004972032%
Output for 5.4.36
microtime: 0.0011100769042969 100% CacheTime: 0.00099492073059082 89.626288659794% cache_time: 0.00062680244445801 56.464776632302%
Output for 5.4.35
microtime: 0.00090408325195312 100% CacheTime: 0.00095605850219727 105.74894514768% cache_time: 0.00056099891662598 62.051687763713%
Output for 5.4.34
microtime: 0.00084495544433594 100% CacheTime: 0.001054048538208 124.7460496614% cache_time: 0.00060105323791504 71.134311512415%
Output for 5.4.33
microtime: 0.0010631084442139 100% CacheTime: 0.0010011196136475 94.169096209913% cache_time: 0.00064301490783691 60.484413545638%
Output for 5.4.32
microtime: 0.0015509128570557 100% CacheTime: 0.001802921295166 116.24903920061% cache_time: 0.00095200538635254 61.383551114527%
Output for 5.4.31
microtime: 0.00087809562683105 100% CacheTime: 0.0012030601501465 137.00787401575% cache_time: 0.00058436393737793 66.549008960087%
Output for 5.4.30
microtime: 0.0011301040649414 100% CacheTime: 0.0012280941009521 108.67088607595% cache_time: 0.00067019462585449 59.303797468354%
Output for 5.4.29
microtime: 0.0015079975128174 100% CacheTime: 0.0017309188842773 114.78260869565% cache_time: 0.0010161399841309 67.383399209486%
Output for 5.4.28
microtime: 0.0014359951019287 100% CacheTime: 0.0023200511932373 161.56400464885% cache_time: 0.00094103813171387 65.532126847086%
Output for 5.4.27
microtime: 0.00085306167602539 100% CacheTime: 0.0009911060333252 116.18222470654% cache_time: 0.00066328048706055 77.752934600335%
Output for 5.4.26
microtime: 0.00082874298095703 100% CacheTime: 0.0013506412506104 162.9746835443% cache_time: 0.00049662590026855 59.925201380898%
Output for 5.4.25
microtime: 0.0008389949798584 100% CacheTime: 0.0012471675872803 148.65018471157% cache_time: 0.00044083595275879 52.54333617505%
Output for 5.4.24
microtime: 0.00076174736022949 100% CacheTime: 0.00078082084655762 102.50391236307% cache_time: 0.00039482116699219 51.830985915493%
Output for 5.4.23
microtime: 0.00093817710876465 100% CacheTime: 0.001046895980835 111.58831003812% cache_time: 0.00056099891662598 59.796696315121%
Output for 5.4.22
microtime: 0.00095009803771973 100% CacheTime: 0.0013189315795898 138.82057716437% cache_time: 0.00067901611328125 71.468005018821%
Output for 5.4.21
microtime: 0.00090432167053223 100% CacheTime: 0.001035213470459 114.47403110994% cache_time: 0.00054526329040527 60.295280780385%
Output for 5.4.20
microtime: 0.0019760131835938 100% CacheTime: 0.0010542869567871 53.354247104247% cache_time: 0.00057005882263184 28.848938223938%
Output for 5.4.19
microtime: 0.0010139942169189 100% CacheTime: 0.0018110275268555 178.60333881966% cache_time: 0.00076889991760254 75.828826710557%
Output for 5.4.18
microtime: 0.001046895980835 100% CacheTime: 0.0011320114135742 108.13026645411% cache_time: 0.00085210800170898 81.393759963562%
Output for 5.4.17
microtime: 0.00083494186401367 100% CacheTime: 0.00088381767272949 105.85379782981% cache_time: 0.0004880428314209 58.452312964021%
Output for 5.4.16
microtime: 0.0011730194091797 100% CacheTime: 0.0011899471282959 101.44308943089% cache_time: 0.00051307678222656 43.739837398374%
Output for 5.4.15
microtime: 0.0010268688201904 100% CacheTime: 0.0010268688201904 100% cache_time: 0.00013899803161621 13.536104016717%
Output for 5.4.14
microtime: 0.0014832019805908 100% CacheTime: 0.0016641616821289 112.20061083427% cache_time: 0.00093507766723633 63.04452660344%
Output for 5.4.13
microtime: 0.00093293190002441 100% CacheTime: 0.00086116790771484 92.307692307692% cache_time: 0.00049090385437012 52.619473549706%
Output for 5.4.12
microtime: 0.001147985458374 100% CacheTime: 0.0010359287261963 90.238836967809% cache_time: 0.00039815902709961 34.683281412253%
Output for 5.4.11
microtime: 0.0008699893951416 100% CacheTime: 0.0015578269958496 179.0627569197% cache_time: 0.00069808959960938 80.241161962181%
Output for 5.4.10
microtime: 0.00089907646179199 100% CacheTime: 0.00095605850219727 106.33784142137% cache_time: 0.00057411193847656 63.85574118271%
Output for 5.4.9
microtime: 0.0015871524810791 100% CacheTime: 0.0019102096557617 120.35451404537% cache_time: 0.00050497055053711 31.81613339342%
Output for 5.4.8
microtime: 0.00076198577880859 100% CacheTime: 0.00083208084106445 109.19899874844% cache_time: 0.00049114227294922 64.455569461827%
Output for 5.4.7
microtime: 0.000823974609375 100% CacheTime: 0.0010161399841309 123.32175925926% cache_time: 0.00069904327392578 84.837962962963%
Output for 5.4.6
microtime: 0.0017478466033936 100% CacheTime: 0.0019209384918213 109.90315100259% cache_time: 0.0011148452758789 63.783931250853%
Output for 5.4.5
microtime: 0.0014171600341797 100% CacheTime: 0.00080108642578125 56.527590847914% cache_time: 0.00065112113952637 45.945491251682%
Output for 5.4.4
microtime: 0.0014481544494629 100% CacheTime: 0.0016911029815674 116.77642410273% cache_time: 0.0010850429534912 74.925913730655%
Output for 5.4.3
microtime: 0.0021069049835205 100% CacheTime: 0.0015549659729004 73.803326920901% cache_time: 0.0010221004486084 48.511938440647%
Output for 5.4.2
microtime: 0.00087499618530273 100% CacheTime: 0.0014498233795166 165.69482288828% cache_time: 0.00064897537231445 74.1689373297%
Output for 5.4.1
microtime: 0.00084686279296875 100% CacheTime: 0.0010569095611572 124.80292792793% cache_time: 0.0006098747253418 72.015765765766%
Output for 5.4.0
microtime: 0.0015029907226562 100% CacheTime: 0.0020508766174316 136.45304568528% cache_time: 0.0015928745269775 105.98032994924%
Output for 5.3.29
microtime: -0.024565935134888 100% CacheTime: -0.018616914749146 75.783456428273% cache_time: -0.024893045425415 101.33156050739%
Output for 5.3.28
microtime: -0.016613960266113 100% CacheTime: -0.015364170074463 92.477469720452% cache_time: -0.017029047012329 102.49842144538%
Output for 5.3.27
microtime: -0.0073769092559814 100% CacheTime: -0.0057799816131592 78.352348017194% cache_time: -0.0075850486755371 102.82149898193%
Output for 5.3.26
microtime: -0.019101142883301 100% CacheTime: -0.02045202255249 107.0722452444% cache_time: -0.02316427230835 121.27165609866%
Output for 5.3.25
microtime: -0.01940131187439 100% CacheTime: -0.01804518699646 93.010138248848% cache_time: -0.019804239273071 102.07680491551%
Output for 5.3.24
microtime: -0.016221046447754 100% CacheTime: -0.013933181762695 85.895702275266% cache_time: -0.016487836837769 101.6447175025%
Output for 5.3.23
microtime: -0.01897406578064 100% CacheTime: -0.017541170120239 92.448135908423% cache_time: -0.019433259963989 102.42011484865%
Output for 5.3.22
microtime: -0.016035079956055 100% CacheTime: -0.01309609413147 81.671523730225% cache_time: -0.01662540435791 103.68145592958%
Output for 5.3.21
microtime: -0.01806902885437 100% CacheTime: -0.015928983688354 88.156280100809% cache_time: -0.018213272094727 100.79828994419%
Output for 5.3.20
microtime: -0.018570184707642 100% CacheTime: -0.016282081604004 87.678619574009% cache_time: -0.018872261047363 101.62667385639%
Output for 5.3.19
microtime: -0.011767148971558 100% CacheTime: -0.010176420211792 86.481612805187% cache_time: -0.012056112289429 102.45567824942%
Output for 5.3.18
microtime: -0.018026113510132 100% CacheTime: -0.016204118728638 89.892470273916% cache_time: -0.019254207611084 106.81286124301%
Output for 5.3.17
microtime: -0.013148307800293 100% CacheTime: -0.011083126068115 84.293174729818% cache_time: -0.013615131378174 103.55044607239%
Output for 5.3.16
microtime: -0.016165256500244 100% CacheTime: -0.014858245849609 91.914692781924% cache_time: -0.016496181488037 102.04713725259%
Output for 5.3.15
microtime: -0.015375137329102 100% CacheTime: -0.013656139373779 88.819625356656% cache_time: -0.016002893447876 104.08293015755%
Output for 5.3.14
microtime: -0.018469333648682 100% CacheTime: -0.016847133636475 91.216791882891% cache_time: -0.019159317016602 103.73583249426%
Output for 5.3.13
microtime: -0.016431093215942 100% CacheTime: -0.014944076538086 90.949983313261% cache_time: -0.016721248626709 101.76589230524%
Output for 5.3.12
microtime: -0.034853935241699 100% CacheTime: -0.036179304122925 103.8026376994% cache_time: -0.037954092025757 108.89471092018%
Output for 5.3.11
microtime: -0.017918109893799 100% CacheTime: -0.016387224197388 91.45620991564% cache_time: -0.018366098403931 102.50019959017%
Output for 5.3.10
microtime: -0.01987099647522 100% CacheTime: -0.01844596862793 92.828603995441% cache_time: -0.020263195037842 101.97372367868%
Output for 5.3.9
microtime: -0.014641046524048 100% CacheTime: -0.01324987411499 90.498135452458% cache_time: -0.015082120895386 103.01258773144%
Output for 5.3.8
microtime: -0.021533012390137 100% CacheTime: -0.019067049026489 88.547987067629% cache_time: -0.022078990936279 102.53554187519%
Output for 5.3.7
microtime: -0.022487878799438 100% CacheTime: -0.021170139312744 94.140223280075% cache_time: -0.022980928421021 102.19251280203%
Output for 5.3.6
microtime: -0.021615982055664 100% CacheTime: -0.019988059997559 92.468896144004% cache_time: -0.021890878677368 101.27172858025%
Output for 5.3.5
microtime: -0.024479150772095 100% CacheTime: -0.021568059921265 88.107876462166% cache_time: -0.025284051895142 103.28810885043%
Output for 5.3.4
microtime: -0.025463104248047 100% CacheTime: -0.023028135299683 90.437265917603% cache_time: -0.025660037994385 100.7734082397%
Output for 5.3.3
microtime: -0.025165319442749 100% CacheTime: -0.022638320922852 89.958408731324% cache_time: -0.025686264038086 102.0700893407%
Output for 5.3.2
microtime: -0.033874273300171 100% CacheTime: -0.032519102096558 95.999408779623% cache_time: -0.034097194671631 100.65808458674%
Output for 5.3.1
microtime: -0.013070106506348 100% CacheTime: -0.010765075683594 82.364100693178% cache_time: -0.013429164886475 102.74717256476%
Output for 5.3.0
microtime: -0.013061046600342 100% CacheTime: -0.011531114578247 88.286298419189% cache_time: -0.013304948806763 101.86740170129%
Output for 5.2.17
microtime: -0.012840032577515 100% CacheTime: -0.0098879337310791 77.008634295794% Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.2.16
microtime: -0.0071969032287598 100% CacheTime: -0.0056438446044922 78.420459815809% Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.2.15
microtime: -0.015725135803223 100% CacheTime: -0.014425277709961 91.733883194857% Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.2.14
microtime: -0.0077190399169922 100% CacheTime: -0.0057799816131592 74.879540400297% Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.2.13
microtime: -0.0090088844299316 100% CacheTime: -0.0066361427307129 73.662202932303% Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.2.12
microtime: -0.0078709125518799 100% CacheTime: -0.0065579414367676 83.318692636234% Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.2.11
microtime: -0.0077950954437256 100% CacheTime: -0.0049021244049072 62.887291634807% Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.2.10
microtime: -0.0061790943145752 100% CacheTime: -0.0047001838684082 76.065902689354% Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.2.9
microtime: -0.010821104049683 100% CacheTime: -0.0078930854797363 72.94159120453% Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.2.8
microtime: -0.012579202651978 100% CacheTime: -0.0084621906280518 67.27127992267% Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.2.7
microtime: -0.012511968612671 100% CacheTime: -0.010878086090088 86.941443243964% Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.2.6
microtime: -0.0069100856781006 100% CacheTime: -0.005748987197876 83.197046544526% Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.2.5
microtime: -0.012234210968018 100% CacheTime: -0.011306047439575 92.413376466461% Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.2.4
microtime: -0.028091192245483 100% CacheTime: -0.026928901672363 95.862437724383% Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.2.3
microtime: -0.01664924621582 100% CacheTime: -0.013657093048096 82.028296482988% Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.2.2
microtime: 0.0013887882232666 100% CacheTime: 0.0023717880249023 170.78111587983% Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.2.1
microtime: 0.0024459362030029 100% CacheTime: 0.0043900012969971 179.48143093869% Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.2.0
microtime: 0.0011351108551025 100% CacheTime: 0.0024299621582031 214.07267380802% Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.1.6
microtime: 0.00094985961914062 100% CacheTime: 0.0024137496948242 254.11646586345% Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.1.5
microtime: 0.0021839141845703 100% CacheTime: 0.0040791034698486 186.77947598253% Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.1.4
microtime: 0.0011510848999023 100% CacheTime: 0.0026581287384033 230.92377796189% Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.1.3
microtime: 0.0012829303741455 100% CacheTime: 0.0023109912872314 180.13380412563% Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.1.2
microtime: 0.0011148452758789 100% CacheTime: 0.0029411315917969 263.81522668948% Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.1.1
microtime: 0.0011851787567139 100% CacheTime: 0.0024211406707764 204.28485214243% Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.1.0
microtime: 0.0012600421905518 100% CacheTime: 0.0023958683013916 190.14191106906% Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.0.5
microtime: 0.0031099319458008 100% CacheTime: 0.0023090839385986 74.248696718798% Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.0.4
microtime: 0.0018649101257324 100% CacheTime: 0.0034339427947998 184.13449245717% Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.0.3
microtime: 0.0017609596252441 100% CacheTime: 0.0028080940246582 159.46385052803% Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.0.2
microtime: 0.0035967826843262 100% CacheTime: 0.0056288242340088 156.49608908922% Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.0.1
Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/HEXFF on line 21 microtime: 0.0022652149200439 100%PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/HEXFF on line 45 CacheTime: 0.0061080455780029 269.64530049468%PHP_EOL Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 5.0.0
Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/HEXFF on line 21 microtime: 0.0020060539245605 100%PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/HEXFF on line 45 CacheTime: 0.0033860206604004 168.79011171856%PHP_EOL Fatal error: Call to undefined function gc_enabled() in /in/HEXFF on line 51
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/HEXFF on line 26
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/HEXFF on line 26
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in /in/HEXFF on line 26
Process exited with code 255.

preferences:
58.05 ms | 910 KiB | 5 Q