3v4l.org

run code in 300+ PHP versions simultaneously
<?php class TimeWrapper { private static $now_time = 0; /** * @param bool $force_refresh 是否强制刷新 * @return int */ public static function getTime($force_refresh = false) { if ($force_refresh) { self::$now_time = time(); } else { if (!self::$now_time) { self::$now_time = time(); } } return self::$now_time; } } // Dont' abuse 3v4l $n = 5000; $start = microtime(true); for ($i = 0; $i < $n; $i++) { $t = TimeWrapper::getTime(); } $finish = microtime(true); echo "TimeWrapper: " . ($finish - $start) . PHP_EOL; $start = microtime(true); for ($i = 0; $i < $n; $i++) { $t = time(); } $finish = microtime(true); echo "time: " . ($finish - $start) . PHP_EOL;
Output for 7.4.0
TimeWrapper: 0.0058259963989258 time: 0.00028705596923828
Output for 7.3.12
TimeWrapper: 0.00044894218444824 time: 0.00034713745117188
Output for 7.3.11
TimeWrapper: 0.0019629001617432 time: 0.00032782554626465
Output for 7.3.10
TimeWrapper: 0.00054597854614258 time: 0.00034689903259277
Output for 7.3.9
TimeWrapper: 0.00046086311340332 time: 0.00036382675170898
Output for 7.3.8
TimeWrapper: 0.00052213668823242 time: 0.00028395652770996
Output for 7.3.7
TimeWrapper: 0.00047492980957031 time: 0.00016117095947266
Output for 7.3.6
TimeWrapper: 0.00057411193847656 time: 0.00014400482177734
Output for 7.3.5
TimeWrapper: 0.00075292587280273 time: 0.00015592575073242
Output for 7.3.4
TimeWrapper: 0.0005497932434082 time: 0.00015711784362793
Output for 7.3.3
TimeWrapper: 0.0006868839263916 time: 0.00019598007202148
Output for 7.3.2
TimeWrapper: 0.00045180320739746 time: 0.0001528263092041
Output for 7.3.1
TimeWrapper: 0.00050497055053711 time: 0.00015592575073242
Output for 7.3.0
TimeWrapper: 0.00077295303344727 time: 0.0002291202545166
Output for 7.2.25
TimeWrapper: 0.00082802772521973 time: 0.00050711631774902
Output for 7.2.24
TimeWrapper: 0.00059795379638672 time: 0.00042605400085449
Output for 7.2.23
TimeWrapper: 0.00073790550231934 time: 0.00037503242492676
Output for 7.2.22
TimeWrapper: 0.00060391426086426 time: 0.00032687187194824
Output for 7.2.21
TimeWrapper: 0.00052309036254883 time: 0.00039505958557129
Output for 7.2.20
TimeWrapper: 0.00056290626525879 time: 0.00019693374633789
Output for 7.2.19
TimeWrapper: 0.00081610679626465 time: 0.00032496452331543
Output for 7.2.18
TimeWrapper: 0.00078105926513672 time: 0.00029492378234863
Output for 7.2.17
TimeWrapper: 0.00084781646728516 time: 0.00023293495178223
Output for 7.2.16
TimeWrapper: 0.00055885314941406 time: 0.00015997886657715
Output for 7.2.15
TimeWrapper: 0.00059103965759277 time: 0.00026392936706543
Output for 7.2.14
TimeWrapper: 0.0018739700317383 time: 0.00016999244689941
Output for 7.2.13
TimeWrapper: 0.0025620460510254 time: 0.00031208992004395
Output for 7.2.12
TimeWrapper: 0.0057239532470703 time: 0.00017595291137695
Output for 7.2.11
TimeWrapper: 0.00056600570678711 time: 0.00014686584472656
Output for 7.2.10
TimeWrapper: 0.00054812431335449 time: 0.00015807151794434
Output for 7.2.9
TimeWrapper: 0.00079989433288574 time: 0.00037908554077148
Output for 7.2.8
TimeWrapper: 0.00077986717224121 time: 0.00025796890258789
Output for 7.2.7
TimeWrapper: 0.00080299377441406 time: 0.00028586387634277
Output for 7.2.6
TimeWrapper: 0.00076413154602051 time: 0.00023698806762695
Output for 7.2.5
TimeWrapper: 0.00068092346191406 time: 0.0001521110534668
Output for 7.2.4
TimeWrapper: 0.00054693222045898 time: 0.00017786026000977
Output for 7.2.3
TimeWrapper: 0.00055313110351562 time: 0.00014710426330566
Output for 7.2.2
TimeWrapper: 0.00054407119750977 time: 0.0002140998840332
Output for 7.2.1
TimeWrapper: 0.00063991546630859 time: 0.00019621849060059
Output for 7.2.0
TimeWrapper: 0.00060296058654785 time: 0.00019001960754395
Output for 7.1.33
TimeWrapper: 0.00083708763122559 time: 0.00022506713867188
Output for 7.1.32
TimeWrapper: 0.00053191184997559 time: 0.00017690658569336
Output for 7.1.31
TimeWrapper: 0.0038111209869385 time: 0.00031614303588867
Output for 7.1.30
TimeWrapper: 0.00061202049255371 time: 0.00026607513427734
Output for 7.1.29
TimeWrapper: 0.00098896026611328 time: 0.00034117698669434
Output for 7.1.28
TimeWrapper: 0.0009009838104248 time: 0.00046610832214355
Output for 7.1.27
TimeWrapper: 0.0044291019439697 time: 0.00015997886657715
Output for 7.1.26
TimeWrapper: 0.00054121017456055 time: 0.00016093254089355
Output for 7.1.25
TimeWrapper: 0.004688024520874 time: 0.00024890899658203
Output for 7.1.24
TimeWrapper: 0.00056004524230957 time: 0.00021100044250488
Output for 7.1.23
TimeWrapper: 0.00058507919311523 time: 0.00017809867858887
Output for 7.1.22
TimeWrapper: 0.00064897537231445 time: 0.00031304359436035
Output for 7.1.21
TimeWrapper: 0.0006411075592041 time: 0.00016093254089355
Output for 7.1.20
TimeWrapper: 0.00057816505432129 time: 0.00019598007202148
Output for 7.1.19
TimeWrapper: 0.00095295906066895 time: 0.00024199485778809
Output for 7.1.18
TimeWrapper: 0.0024261474609375 time: 0.00025486946105957
Output for 7.1.17
TimeWrapper: 0.00053095817565918 time: 0.00015902519226074
Output for 7.1.16
TimeWrapper: 0.00057601928710938 time: 0.00021481513977051
Output for 7.1.15
TimeWrapper: 0.00066399574279785 time: 0.00026512145996094
Output for 7.1.14
TimeWrapper: 0.00067806243896484 time: 0.00017309188842773
Output for 7.1.13
TimeWrapper: 0.0018119812011719 time: 0.00020885467529297
Output for 7.1.12
TimeWrapper: 0.0007932186126709 time: 0.00023198127746582
Output for 7.1.11
TimeWrapper: 0.00074505805969238 time: 0.00021195411682129
Output for 7.1.10
TimeWrapper: 0.00054311752319336 time: 0.0002140998840332
Output for 7.1.9
TimeWrapper: 0.0008699893951416 time: 0.00032210350036621
Output for 7.1.8
TimeWrapper: 0.00075101852416992 time: 0.00022697448730469
Output for 7.1.7
TimeWrapper: 0.00055098533630371 time: 0.00015902519226074
Output for 7.1.6
TimeWrapper: 0.00057196617126465 time: 0.00015687942504883
Output for 7.1.5
TimeWrapper: 0.0018649101257324 time: 0.00015902519226074
Output for 7.1.4
TimeWrapper: 0.0010440349578857 time: 0.00016188621520996
Output for 7.1.3
TimeWrapper: 0.003371000289917 time: 0.00033998489379883
Output for 7.1.2
TimeWrapper: 0.00054001808166504 time: 0.00016498565673828
Output for 7.1.1
TimeWrapper: 0.00050902366638184 time: 0.00015997886657715
Output for 7.1.0
TimeWrapper: 0.0063550472259521 time: 0.00025510787963867
Output for 7.0.33
TimeWrapper: 0.00094485282897949 time: 0.00039410591125488
Output for 7.0.32
TimeWrapper: 0.00056099891662598 time: 0.00017786026000977
Output for 7.0.31
TimeWrapper: 0.00063705444335938 time: 0.00022721290588379
Output for 7.0.30
TimeWrapper: 0.0029778480529785 time: 0.0003209114074707
Output for 7.0.29
TimeWrapper: 0.00089597702026367 time: 0.0002899169921875
Output for 7.0.28
TimeWrapper: 0.00089311599731445 time: 0.00026917457580566
Output for 7.0.27
TimeWrapper: 0.00054311752319336 time: 0.00016498565673828
Output for 7.0.26
TimeWrapper: 0.0018541812896729 time: 0.00019502639770508
Output for 7.0.25
TimeWrapper: 0.00077199935913086 time: 0.0002439022064209
Output for 7.0.24
TimeWrapper: 0.00051712989807129 time: 0.00024795532226562
Output for 7.0.23
TimeWrapper: 0.0031089782714844 time: 0.00021004676818848
Output for 7.0.22
TimeWrapper: 0.00067687034606934 time: 0.00015997886657715
Output for 7.0.21
TimeWrapper: 0.00058293342590332 time: 0.00016117095947266
Output for 7.0.20
TimeWrapper: 0.00057196617126465 time: 0.00018692016601562
Output for 7.0.19
TimeWrapper: 0.00072789192199707 time: 0.00016689300537109
Output for 7.0.18
TimeWrapper: 0.0025310516357422 time: 0.00015997886657715
Output for 7.0.17
TimeWrapper: 0.0032820701599121 time: 0.00020408630371094
Output for 7.0.16
TimeWrapper: 0.00070405006408691 time: 0.00025582313537598
Output for 7.0.15
TimeWrapper: 0.00053596496582031 time: 0.00021505355834961
Output for 7.0.14
TimeWrapper: 0.0053009986877441 time: 0.0002138614654541
Output for 7.0.13
TimeWrapper: 0.0049440860748291 time: 0.00023889541625977
Output for 7.0.12
TimeWrapper: 0.0046448707580566 time: 0.0002129077911377
Output for 7.0.11
TimeWrapper: 0.0077378749847412 time: 0.00020313262939453
Output for 7.0.10
TimeWrapper: 0.0042660236358643 time: 0.00018596649169922
Output for 7.0.9
TimeWrapper: 0.0092439651489258 time: 0.0002751350402832
Output for 7.0.8
TimeWrapper: 0.00062012672424316 time: 0.0001828670501709
Output for 7.0.7
TimeWrapper: 0.00068497657775879 time: 0.00017404556274414
Output for 7.0.6
TimeWrapper: 0.00061821937561035 time: 0.00017213821411133
Output for 7.0.5
TimeWrapper: 0.0006868839263916 time: 0.00016212463378906
Output for 7.0.4
TimeWrapper: 0.00087380409240723 time: 0.00030183792114258
Output for 7.0.3
TimeWrapper: 0.00057196617126465 time: 0.00023293495178223
Output for 7.0.2
TimeWrapper: 0.00051689147949219 time: 0.0021131038665771
Output for 7.0.1
TimeWrapper: 0.0023050308227539 time: 0.00029397010803223
Output for 7.0.0
TimeWrapper: 0.0048952102661133 time: 0.00017809867858887
Output for 5.6.40
TimeWrapper: 0.0013549327850342 time: 0.00058603286743164
Output for 5.6.39
TimeWrapper: 0.0014371871948242 time: 0.00044608116149902
Output for 5.6.38
TimeWrapper: 0.001298189163208 time: 0.00079202651977539
Output for 5.6.37
TimeWrapper: 0.0013101100921631 time: 0.0004580020904541
Output for 5.6.36
TimeWrapper: 0.0019049644470215 time: 0.00067806243896484
Output for 5.6.35
TimeWrapper: 0.0014932155609131 time: 0.00043606758117676
Output for 5.6.34
TimeWrapper: 0.0011789798736572 time: 0.00039815902709961
Output for 5.6.33
TimeWrapper: 0.0011389255523682 time: 0.00044703483581543
Output for 5.6.32
TimeWrapper: 0.0012438297271729 time: 0.001521110534668
Output for 5.6.31
TimeWrapper: 0.0013020038604736 time: 0.00041604042053223
Output for 5.6.30
TimeWrapper: 0.0013389587402344 time: 0.00048685073852539
Output for 5.6.29
TimeWrapper: 0.0016160011291504 time: 0.00041913986206055
Output for 5.6.28
TimeWrapper: 0.0018429756164551 time: 0.00053715705871582
Output for 5.6.27
TimeWrapper: 0.0013210773468018 time: 0.00042605400085449
Output for 5.6.26
TimeWrapper: 0.0013630390167236 time: 0.00045609474182129
Output for 5.6.25
TimeWrapper: 0.0024979114532471 time: 0.00066399574279785
Output for 5.6.24
TimeWrapper: 0.0023629665374756 time: 0.00074887275695801
Output for 5.6.23
TimeWrapper: 0.0077831745147705 time: 0.00046491622924805
Output for 5.6.22
TimeWrapper: 0.0011630058288574 time: 0.00053095817565918
Output for 5.6.21
TimeWrapper: 0.00199294090271 time: 0.00065398216247559
Output for 5.6.20
TimeWrapper: 0.0017731189727783 time: 0.00051617622375488
Output for 5.6.19
TimeWrapper: 0.0022518634796143 time: 0.00081110000610352
Output for 5.6.18
TimeWrapper: 0.0019230842590332 time: 0.00042104721069336
Output for 5.6.17
TimeWrapper: 0.0013248920440674 time: 0.0005040168762207
Output for 5.6.16
TimeWrapper: 0.0034818649291992 time: 0.0003969669342041
Output for 5.6.15
TimeWrapper: 0.0010819435119629 time: 0.00039100646972656
Output for 5.6.14
TimeWrapper: 0.0030930042266846 time: 0.00050711631774902
Output for 5.6.13
TimeWrapper: 0.0011739730834961 time: 0.0026888847351074
Output for 5.6.12
TimeWrapper: 0.0013358592987061 time: 0.00043106079101562
Output for 5.6.11
TimeWrapper: 0.0014500617980957 time: 0.00083208084106445
Output for 5.6.10
TimeWrapper: 0.0019400119781494 time: 0.00046586990356445
Output for 5.6.9
TimeWrapper: 0.0012249946594238 time: 0.00044107437133789
Output for 5.6.8
TimeWrapper: 0.00148606300354 time: 0.00046515464782715
Output for 5.6.7
TimeWrapper: 0.0020661354064941 time: 0.00080394744873047
Output for 5.6.6
TimeWrapper: 0.0012490749359131 time: 0.00042891502380371
Output for 5.6.5
TimeWrapper: 0.0011019706726074 time: 0.0005500316619873
Output for 5.6.4
TimeWrapper: 0.0011510848999023 time: 0.0018138885498047
Output for 5.6.3
TimeWrapper: 0.0015671253204346 time: 0.00074410438537598
Output for 5.6.2
TimeWrapper: 0.0019090175628662 time: 0.0004119873046875
Output for 5.6.1
TimeWrapper: 0.0017800331115723 time: 0.00065207481384277
Output for 5.6.0
TimeWrapper: 0.0015738010406494 time: 0.0024538040161133
Output for 5.5.38
TimeWrapper: 0.0022039413452148 time: 0.00090503692626953
Output for 5.5.37
TimeWrapper: 0.0012328624725342 time: 0.00045990943908691
Output for 5.5.36
TimeWrapper: 0.0013148784637451 time: 0.00059914588928223
Output for 5.5.35
TimeWrapper: 0.0011920928955078 time: 0.00040006637573242
Output for 5.5.34
TimeWrapper: 0.0014350414276123 time: 0.00052022933959961
Output for 5.5.33
TimeWrapper: 0.0011498928070068 time: 0.00039887428283691
Output for 5.5.32
TimeWrapper: 0.0012121200561523 time: 0.00043797492980957
Output for 5.5.31
TimeWrapper: 0.001939058303833 time: 0.00067305564880371
Output for 5.5.30
TimeWrapper: 0.0020420551300049 time: 0.00043606758117676
Output for 5.5.29
TimeWrapper: 0.0012071132659912 time: 0.00044894218444824
Output for 5.5.28
TimeWrapper: 0.0012109279632568 time: 0.00044989585876465
Output for 5.5.27
TimeWrapper: 0.0016579627990723 time: 0.00039505958557129
Output for 5.5.26
TimeWrapper: 0.0012989044189453 time: 0.00043082237243652
Output for 5.5.25
TimeWrapper: 0.0020349025726318 time: 0.00077199935913086
Output for 5.5.24
TimeWrapper: 0.0021929740905762 time: 0.00045418739318848
Output for 5.5.23
TimeWrapper: 0.0020098686218262 time: 0.00064802169799805
Output for 5.5.22
TimeWrapper: 0.002018928527832 time: 0.0008089542388916
Output for 5.5.21
TimeWrapper: 0.0011990070343018 time: 0.00054001808166504
Output for 5.5.20
TimeWrapper: 0.0013010501861572 time: 0.00041079521179199
Output for 5.5.19
TimeWrapper: 0.0020351409912109 time: 0.00079202651977539
Output for 5.5.18
TimeWrapper: 0.0027909278869629 time: 0.0009310245513916
Output for 5.5.17
TimeWrapper: 0.0012660026550293 time: 0.00044608116149902
Output for 5.5.16
TimeWrapper: 0.0011820793151855 time: 0.00050210952758789
Output for 5.5.15
TimeWrapper: 0.0018200874328613 time: 0.00060009956359863
Output for 5.5.14
TimeWrapper: 0.003119945526123 time: 0.00046586990356445
Output for 5.5.13
TimeWrapper: 0.00166916847229 time: 0.0003972053527832
Output for 5.5.12
TimeWrapper: 0.0010929107666016 time: 0.00053906440734863
Output for 5.5.11
TimeWrapper: 0.0012099742889404 time: 0.00099515914916992
Output for 5.5.10
TimeWrapper: 0.001115083694458 time: 0.00048494338989258
Output for 5.5.9
TimeWrapper: 0.0013761520385742 time: 0.00055503845214844
Output for 5.5.8
TimeWrapper: 0.0039341449737549 time: 0.00040793418884277
Output for 5.5.7
TimeWrapper: 0.0025248527526855 time: 0.00044608116149902
Output for 5.5.6
TimeWrapper: 0.0017950534820557 time: 0.00061297416687012
Output for 5.5.5
TimeWrapper: 0.0011818408966064 time: 0.00043296813964844
Output for 5.5.4
TimeWrapper: 0.0010879039764404 time: 0.00047898292541504
Output for 5.5.3
TimeWrapper: 0.0010800361633301 time: 0.00041794776916504
Output for 5.5.2
TimeWrapper: 0.0011270046234131 time: 0.00040817260742188
Output for 5.5.1
TimeWrapper: 0.0011279582977295 time: 0.00044703483581543
Output for 5.5.0
TimeWrapper: 0.0011870861053467 time: 0.00043106079101562
Output for 5.4.45
TimeWrapper: 0.001471996307373 time: 0.00058603286743164
Output for 5.4.44
TimeWrapper: 0.0060768127441406 time: 0.00063014030456543
Output for 5.4.43
TimeWrapper: 0.0013368129730225 time: 0.00050806999206543
Output for 5.4.42
TimeWrapper: 0.0037600994110107 time: 0.00048112869262695
Output for 5.4.41
TimeWrapper: 0.0017950534820557 time: 0.00063300132751465
Output for 5.4.40
TimeWrapper: 0.0013058185577393 time: 0.00068807601928711
Output for 5.4.39
TimeWrapper: 0.0023999214172363 time: 0.00091314315795898
Output for 5.4.38
TimeWrapper: 0.0012171268463135 time: 0.00045585632324219
Output for 5.4.37
TimeWrapper: 0.0012269020080566 time: 0.00053215026855469
Output for 5.4.36
TimeWrapper: 0.0010950565338135 time: 0.00074291229248047
Output for 5.4.35
TimeWrapper: 0.001471996307373 time: 0.00049901008605957
Output for 5.4.34
TimeWrapper: 0.0013549327850342 time: 0.00062203407287598
Output for 5.4.33
TimeWrapper: 0.0015659332275391 time: 0.00068092346191406
Output for 5.4.32
TimeWrapper: 0.0011799335479736 time: 0.00052499771118164
Output for 5.4.31
TimeWrapper: 0.00152587890625 time: 0.00058197975158691
Output for 5.4.30
TimeWrapper: 0.0011930465698242 time: 0.00046181678771973
Output for 5.4.29
TimeWrapper: 0.0017499923706055 time: 0.00052189826965332
Output for 5.4.28
TimeWrapper: 0.0011448860168457 time: 0.00044894218444824
Output for 5.4.27
TimeWrapper: 0.0011868476867676 time: 0.0005338191986084
Output for 5.4.26
TimeWrapper: 0.0012519359588623 time: 0.00065493583679199
Output for 5.4.25
TimeWrapper: 0.0014150142669678 time: 0.00047183036804199
Output for 5.4.24
TimeWrapper: 0.0018949508666992 time: 0.00054788589477539
Output for 5.4.23
TimeWrapper: 0.0013289451599121 time: 0.00096797943115234
Output for 5.4.22
TimeWrapper: 0.0011539459228516 time: 0.0004429817199707
Output for 5.4.21
TimeWrapper: 0.0012509822845459 time: 0.0004570484161377
Output for 5.4.20
TimeWrapper: 0.0013699531555176 time: 0.00052309036254883
Output for 5.4.19
TimeWrapper: 0.0011639595031738 time: 0.00050187110900879
Output for 5.4.18
TimeWrapper: 0.0015828609466553 time: 0.0006558895111084
Output for 5.4.17
TimeWrapper: 0.0014779567718506 time: 0.00048398971557617
Output for 5.4.16
TimeWrapper: 0.0014119148254395 time: 0.00042510032653809
Output for 5.4.15
TimeWrapper: 0.0013291835784912 time: 0.00052094459533691
Output for 5.4.14
TimeWrapper: 0.0013260841369629 time: 0.0004420280456543
Output for 5.4.13
TimeWrapper: 0.0012500286102295 time: 0.00048995018005371
Output for 5.4.12
TimeWrapper: 0.0014219284057617 time: 0.00059914588928223
Output for 5.4.11
TimeWrapper: 0.0019059181213379 time: 0.00075292587280273
Output for 5.4.10
TimeWrapper: 0.0020670890808105 time: 0.00096583366394043
Output for 5.4.9
TimeWrapper: 0.0013248920440674 time: 0.00053906440734863
Output for 5.4.8
TimeWrapper: 0.0013189315795898 time: 0.00060606002807617
Output for 5.4.7
TimeWrapper: 0.0012791156768799 time: 0.00050616264343262
Output for 5.4.6
TimeWrapper: 0.0012481212615967 time: 0.0023059844970703
Output for 5.4.5
TimeWrapper: 0.0056319236755371 time: 0.00044488906860352
Output for 5.4.4
TimeWrapper: 0.0011310577392578 time: 0.00049614906311035
Output for 5.4.3
TimeWrapper: 0.0012218952178955 time: 0.00043010711669922
Output for 5.4.2
TimeWrapper: 0.0012850761413574 time: 0.00043511390686035
Output for 5.4.1
TimeWrapper: 0.0011429786682129 time: 0.00048708915710449
Output for 5.4.0
TimeWrapper: 0.001168966293335 time: 0.00052189826965332
Output for 5.3.29
TimeWrapper: 0.0054810047149658 time: 0.001410961151123
Output for 5.3.28
TimeWrapper: 0.0021321773529053 time: 0.0014438629150391
Output for 5.3.27
TimeWrapper: 0.0022351741790771 time: 0.00060606002807617
Output for 5.3.26
TimeWrapper: 0.0023090839385986 time: 0.00062417984008789
Output for 5.3.25
TimeWrapper: 0.0041890144348145 time: 0.0012118816375732
Output for 5.3.24
TimeWrapper: 0.002453088760376 time: 0.00063109397888184
Output for 5.3.23
TimeWrapper: 0.0032122135162354 time: 0.00063395500183105
Output for 5.3.22
TimeWrapper: 0.0029881000518799 time: 0.00077319145202637
Output for 5.3.21
TimeWrapper: 0.0025811195373535 time: 0.00096893310546875
Output for 5.3.20
TimeWrapper: 0.0025601387023926 time: 0.00083088874816895
Output for 5.3.19
TimeWrapper: 0.0022990703582764 time: 0.00057792663574219
Output for 5.3.18
TimeWrapper: 0.0024189949035645 time: 0.00080299377441406
Output for 5.3.17
TimeWrapper: 0.0021162033081055 time: 0.0007929801940918
Output for 5.3.16
TimeWrapper: 0.0021622180938721 time: 0.0043659210205078
Output for 5.3.15
TimeWrapper: 0.0039911270141602 time: 0.00059795379638672
Output for 5.3.14
TimeWrapper: 0.0024480819702148 time: 0.00078296661376953
Output for 5.3.13
TimeWrapper: 0.0023150444030762 time: 0.00057792663574219
Output for 5.3.12
TimeWrapper: 0.002140998840332 time: 0.00061607360839844
Output for 5.3.11
TimeWrapper: 0.0021522045135498 time: 0.00065398216247559
Output for 5.3.10
TimeWrapper: 0.0047430992126465 time: 0.00058388710021973
Output for 5.3.9
TimeWrapper: 0.0024051666259766 time: 0.00061202049255371
Output for 5.3.8
TimeWrapper: 0.00211501121521 time: 0.00053691864013672
Output for 5.3.7
TimeWrapper: 0.0052390098571777 time: 0.00055694580078125
Output for 5.3.6
TimeWrapper: 0.0022480487823486 time: 0.00067496299743652
Output for 5.3.5
TimeWrapper: 0.0039482116699219 time: 0.00068902969360352
Output for 5.3.4
TimeWrapper: 0.0024681091308594 time: 0.00074911117553711
Output for 5.3.3
TimeWrapper: 0.0036110877990723 time: 0.00056910514831543
Output for 5.3.2
TimeWrapper: 0.0049951076507568 time: 0.0011520385742188
Output for 5.3.1
TimeWrapper: 0.0024151802062988 time: 0.00059795379638672
Output for 5.3.0
TimeWrapper: 0.0034551620483398 time: 0.0011677742004395
Output for 5.2.17
TimeWrapper: 0.006148099899292 time: 0.00081300735473633
Output for 5.2.16
TimeWrapper: 0.0025269985198975 time: 0.00077605247497559
Output for 5.2.15
TimeWrapper: 0.0025441646575928 time: 0.0018320083618164
Output for 5.2.14
TimeWrapper: 0.0027990341186523 time: 0.0025160312652588
Output for 5.2.13
TimeWrapper: 0.0064010620117188 time: 0.00089001655578613
Output for 5.2.12
TimeWrapper: 0.0027461051940918 time: 0.0008089542388916
Output for 5.2.11
TimeWrapper: 0.0034170150756836 time: 0.00078392028808594
Output for 5.2.10
TimeWrapper: 0.0028090476989746 time: 0.0054240226745605
Output for 5.2.9
TimeWrapper: 0.0075831413269043 time: 0.00096988677978516
Output for 5.2.8
TimeWrapper: 0.0031981468200684 time: 0.00087809562683105
Output for 5.2.7
TimeWrapper: 0.003878116607666 time: 0.0009310245513916
Output for 5.2.6
TimeWrapper: 0.0041689872741699 time: 0.0012061595916748
Output for 5.2.5
TimeWrapper: 0.0026521682739258 time: 0.00083208084106445
Output for 5.2.4
TimeWrapper: 0.0024280548095703 time: 0.00090789794921875
Output for 5.2.3
TimeWrapper: 0.0034241676330566 time: 0.0007929801940918
Output for 5.2.2
TimeWrapper: 0.0057668685913086 time: 0.0016598701477051
Output for 5.2.1
TimeWrapper: 0.004270076751709 time: 0.0007939338684082
Output for 5.2.0
TimeWrapper: 0.0029139518737793 time: 0.00082206726074219
Output for 5.1.6
TimeWrapper: 0.0081429481506348 time: 0.0042128562927246
Output for 5.1.5
TimeWrapper: 0.0038611888885498 time: 0.00087714195251465
Output for 5.1.4
TimeWrapper: 0.0032429695129395 time: 0.00075912475585938
Output for 5.1.3
TimeWrapper: 0.0039069652557373 time: 0.0011739730834961
Output for 5.1.2
TimeWrapper: 0.0040221214294434 time: 0.00090789794921875
Output for 5.1.1
TimeWrapper: 0.0035388469696045 time: 0.00083708763122559
Output for 5.1.0
TimeWrapper: 0.0029819011688232 time: 0.00087618827819824
Output for 5.0.5
TimeWrapper: 0.0053730010986328 time: 0.0024220943450928
Output for 5.0.4
TimeWrapper: 0.0071601867675781 time: 0.0017950534820557
Output for 5.0.3
TimeWrapper: 0.0049619674682617 time: 0.0020270347595215
Output for 5.0.2
TimeWrapper: 0.0051660537719727 time: 0.0020360946655273
Output for 5.0.1
Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/rPU1o on line 32 TimeWrapper: 0.0053830146789551PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/rPU1o on line 40 time: 0.0017778873443604PHP_EOL
Output for 5.0.0
Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/rPU1o on line 32 TimeWrapper: 0.0079319477081299PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/rPU1o on line 40 time: 0.0018439292907715PHP_EOL
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/rPU1o on line 5
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/rPU1o on line 5
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/rPU1o on line 5
Process exited with code 255.

preferences:
281.79 ms | 401 KiB | 322 Q