3v4l.org

run code in 300+ PHP versions simultaneously
<?php function isset_( $key, array $array ) { return isset( $array[$key] ); } $my_array = array(); $start = microtime( TRUE ); for( $i = 1; $i < 10000; $i++ ) { array_key_exists( $i, $my_array ); $my_array[$i] = 0; } $stop = microtime( TRUE ); print "array_key_exists( \$my_array ) ".($stop-$start).PHP_EOL; unset( $my_array, $my_array_ref, $start, $stop, $i ); $my_array = array(); $start = microtime( TRUE ); for( $i = 1; $i < 10000; $i++ ) { isset( $my_array[$i] ); $my_array[$i] = 0; } $stop = microtime( TRUE ); print "isset( \$my_array ) ".($stop-$start).PHP_EOL; unset( $my_array, $my_array_ref, $start, $stop, $i ); $my_array = array(); $start = microtime( TRUE ); for( $i = 1; $i < 10000; $i++ ) { isset_( $i, $my_array ); $my_array[$i] = 0; } $stop = microtime( TRUE ); print "isset_( \$my_array ) ".($stop-$start).PHP_EOL; unset( $my_array, $my_array_ref, $start, $stop, $i ); $my_array = array(); $my_array_ref = &$my_array; $start = microtime( TRUE ); for( $i = 1; $i < 10000; $i++ ) { array_key_exists( $i, $my_array_ref ); $my_array_ref[$i] = 0; } $stop = microtime( TRUE ); print "array_key_exists( \$my_array_ref ) ".($stop-$start).PHP_EOL; unset( $my_array, $my_array_ref, $start, $stop, $i ); $my_array = array(); $my_array_ref = &$my_array; $start = microtime( TRUE ); for( $i = 1; $i < 10000; $i++ ) { isset( $my_array_ref[$i] ); $my_array_ref[$i] = 0; } $stop = microtime( TRUE ); print "isset( \$my_array_ref ) ".($stop-$start).PHP_EOL; unset( $my_array, $my_array_ref, $start, $stop, $i ); $my_array = array(); $my_array_ref = &$my_array; $start = microtime( TRUE ); for( $i = 1; $i < 10000; $i++ ) { isset_( $i, $my_array_ref ); $my_array_ref[$i] = 0; } $stop = microtime( TRUE ); print "isset_( \$my_array_ref ) ".($stop-$start).PHP_EOL; unset( $my_array, $my_array_ref, $start, $stop, $i );
Output for 7.2.0
array_key_exists( $my_array ) 0.00039100646972656 isset( $my_array ) 0.0002598762512207 isset_( $my_array ) 0.00046610832214355 array_key_exists( $my_array_ref ) 0.0005497932434082 isset( $my_array_ref ) 0.00033903121948242 isset_( $my_array_ref ) 0.00056695938110352
Output for 7.1.7
array_key_exists( $my_array ) 0.00072693824768066 isset( $my_array ) 0.00046277046203613 isset_( $my_array ) 0.0010149478912354 array_key_exists( $my_array_ref ) 0.00074005126953125 isset( $my_array_ref ) 0.00047993659973145 isset_( $my_array_ref ) 0.0010478496551514
Output for 7.1.6
array_key_exists( $my_array ) 0.00075912475585938 isset( $my_array ) 0.00053882598876953 isset_( $my_array ) 0.0010950565338135 array_key_exists( $my_array_ref ) 0.00082015991210938 isset( $my_array_ref ) 0.00060105323791504 isset_( $my_array_ref ) 0.001129150390625
Output for 7.1.5
array_key_exists( $my_array ) 0.00067496299743652 isset( $my_array ) 0.00045585632324219 isset_( $my_array ) 0.00092697143554688 array_key_exists( $my_array_ref ) 0.00070810317993164 isset( $my_array_ref ) 0.00049090385437012 isset_( $my_array_ref ) 0.00098800659179688
Output for 7.1.0
array_key_exists( $my_array ) 0.00059390068054199 isset( $my_array ) 0.00046181678771973 isset_( $my_array ) 0.00089597702026367 array_key_exists( $my_array_ref ) 0.00063204765319824 isset( $my_array_ref ) 0.00053596496582031 isset_( $my_array_ref ) 0.0009620189666748
Output for 7.0.20
array_key_exists( $my_array ) 0.00078296661376953 isset( $my_array ) 0.00050091743469238 isset_( $my_array ) 0.001183032989502 array_key_exists( $my_array_ref ) 0.00079607963562012 isset( $my_array_ref ) 0.00050806999206543 isset_( $my_array_ref ) 0.001201868057251
Output for 7.0.14
array_key_exists( $my_array ) 0.00063514709472656 isset( $my_array ) 0.00047492980957031 isset_( $my_array ) 0.00094389915466309 array_key_exists( $my_array_ref ) 0.00064682960510254 isset( $my_array_ref ) 0.00052213668823242 isset_( $my_array_ref ) 0.00092196464538574
Output for 7.0.6
array_key_exists( $my_array ) 0.00052094459533691 isset( $my_array ) 0.00030899047851562 isset_( $my_array ) 0.0006110668182373 array_key_exists( $my_array_ref ) 0.00044703483581543 isset( $my_array_ref ) 0.0003361701965332 isset_( $my_array_ref ) 0.00064802169799805
Output for 7.0.5
array_key_exists( $my_array ) 0.00046491622924805 isset( $my_array ) 0.00028491020202637 isset_( $my_array ) 0.00053596496582031 array_key_exists( $my_array_ref ) 0.00040006637573242 isset( $my_array_ref ) 0.00029683113098145 isset_( $my_array_ref ) 0.0005500316619873
Output for 7.0.4
array_key_exists( $my_array ) 0.00049209594726562 isset( $my_array ) 0.00038003921508789 isset_( $my_array ) 0.00073099136352539 array_key_exists( $my_array_ref ) 0.00074100494384766 isset( $my_array_ref ) 0.0007331371307373 isset_( $my_array_ref ) 0.0009770393371582
Output for 7.0.3
array_key_exists( $my_array ) 0.0003819465637207 isset( $my_array ) 0.00027799606323242 isset_( $my_array ) 0.00052881240844727 array_key_exists( $my_array_ref ) 0.00038599967956543 isset( $my_array_ref ) 0.00029802322387695 isset_( $my_array_ref ) 0.00056195259094238
Output for 7.0.2
array_key_exists( $my_array ) 0.00039887428283691 isset( $my_array ) 0.0003199577331543 isset_( $my_array ) 0.00061297416687012 array_key_exists( $my_array_ref ) 0.00045585632324219 isset( $my_array_ref ) 0.0003361701965332 isset_( $my_array_ref ) 0.00063204765319824
Output for 7.0.1
array_key_exists( $my_array ) 0.00038290023803711 isset( $my_array ) 0.00027918815612793 isset_( $my_array ) 0.00055313110351562 array_key_exists( $my_array_ref ) 0.00039410591125488 isset( $my_array_ref ) 0.00031089782714844 isset_( $my_array_ref ) 0.00058412551879883
Output for 7.0.0
array_key_exists( $my_array ) 0.00037598609924316 isset( $my_array ) 0.00028800964355469 isset_( $my_array ) 0.0005640983581543 array_key_exists( $my_array_ref ) 0.00038385391235352 isset( $my_array_ref ) 0.00029492378234863 isset_( $my_array_ref ) 0.00056695938110352
Output for 5.6.28
array_key_exists( $my_array ) 0.0037670135498047 isset( $my_array ) 0.002410888671875 isset_( $my_array ) 0.0034549236297607 array_key_exists( $my_array_ref ) 1.4543790817261 isset( $my_array_ref ) -0.0011191368103027
Process exited with code 137.
Output for 5.6.21
array_key_exists( $my_array ) 0.0032238960266113 isset( $my_array ) 0.0017969608306885 isset_( $my_array ) 0.0027949810028076 array_key_exists( $my_array_ref ) 1.7869369983673 isset( $my_array_ref ) 0.0010499954223633
Process exited with code 137.
Output for 5.6.20
array_key_exists( $my_array ) 0.0031061172485352 isset( $my_array ) 0.0017449855804443 isset_( $my_array ) 0.0025968551635742 array_key_exists( $my_array_ref ) 1.7686100006104 isset( $my_array_ref ) 0.0010550022125244
Process exited with code 137.
Output for 5.6.19
array_key_exists( $my_array ) 0.0033750534057617 isset( $my_array ) 0.00201416015625 isset_( $my_array ) 0.0028998851776123 array_key_exists( $my_array_ref ) 1.816447019577 isset( $my_array_ref ) 0.0010881423950195
Process exited with code 137.
Output for 5.6.18
array_key_exists( $my_array ) 0.0030620098114014 isset( $my_array ) 0.0017280578613281 isset_( $my_array ) 0.002687931060791 array_key_exists( $my_array_ref ) 1.7810459136963 isset( $my_array_ref ) 0.0010659694671631
Process exited with code 137.
Output for 5.6.17
array_key_exists( $my_array ) 0.0027878284454346 isset( $my_array ) 0.0015790462493896 isset_( $my_array ) 0.0023880004882812 array_key_exists( $my_array_ref ) 1.7621791362762 isset( $my_array_ref ) 0.0011169910430908
Process exited with code 137.
Output for 5.6.16
array_key_exists( $my_array ) 0.003389835357666 isset( $my_array ) 0.0017390251159668 isset_( $my_array ) 0.0028049945831299 array_key_exists( $my_array_ref ) 1.7756309509277 isset( $my_array_ref ) 0.0010480880737305
Process exited with code 137.
Output for 5.6.15
array_key_exists( $my_array ) 0.0028610229492188 isset( $my_array ) 0.001615047454834 isset_( $my_array ) 0.0023610591888428 array_key_exists( $my_array_ref ) 1.7636659145355 isset( $my_array_ref ) 0.001086950302124
Process exited with code 137.
Output for 5.6.14
array_key_exists( $my_array ) 0.0034000873565674 isset( $my_array ) 0.002000093460083 isset_( $my_array ) 0.0029001235961914 array_key_exists( $my_array_ref ) 1.7755110263824 isset( $my_array_ref ) 0.0010471343994141
Process exited with code 137.
Output for 5.6.13
array_key_exists( $my_array ) 0.0022528171539307 isset( $my_array ) 0.001262903213501 isset_( $my_array ) 0.0018861293792725 array_key_exists( $my_array_ref ) 1.7395620346069 isset( $my_array_ref ) 0.0010771751403809
Process exited with code 137.
Output for 5.6.12
array_key_exists( $my_array ) 0.0030159950256348 isset( $my_array ) 0.0016589164733887 isset_( $my_array ) 0.0025870800018311 array_key_exists( $my_array_ref ) 1.7691760063171 isset( $my_array_ref ) 0.0010631084442139
Process exited with code 137.
Output for 5.6.11
array_key_exists( $my_array ) 0.0025558471679688 isset( $my_array ) 0.0014050006866455 isset_( $my_array ) 0.0021798610687256 array_key_exists( $my_array_ref ) 1.7464618682861 isset( $my_array_ref ) 0.0010490417480469
Process exited with code 137.
Output for 5.6.10
array_key_exists( $my_array ) 0.0043458938598633 isset( $my_array ) 0.0017380714416504 isset_( $my_array ) 0.0021889209747314 array_key_exists( $my_array_ref ) 1.8151149749756 isset( $my_array_ref ) 0.0010750293731689
Process exited with code 137.
Output for 5.6.9
array_key_exists( $my_array ) 0.0020899772644043 isset( $my_array ) 0.0011739730834961 isset_( $my_array ) 0.0019080638885498 array_key_exists( $my_array_ref ) 1.6758940219879 isset( $my_array_ref ) 0.0010571479797363
Process exited with code 137.
Output for 5.6.8
array_key_exists( $my_array ) 0.0024168491363525 isset( $my_array ) 0.00136399269104 isset_( $my_array ) 0.0020980834960938 array_key_exists( $my_array_ref ) 1.7635400295258 isset( $my_array_ref ) 0.0010628700256348
Process exited with code 137.
Output for 5.5.35
array_key_exists( $my_array ) 0.0032191276550293 isset( $my_array ) 0.0023419857025146 isset_( $my_array ) 0.003180980682373
Process exited with code 137.
Output for 5.5.34
array_key_exists( $my_array ) 0.005403995513916 isset( $my_array ) 0.002985954284668 isset_( $my_array ) 0.0049271583557129
Process exited with code 137.
Output for 5.5.33
array_key_exists( $my_array ) 0.0037219524383545 isset( $my_array ) 0.0022242069244385 isset_( $my_array ) 0.0035431385040283
Process exited with code 137.
Output for 5.5.32
array_key_exists( $my_array ) 0.0034921169281006 isset( $my_array ) 0.0022320747375488 isset_( $my_array ) 0.0032331943511963
Process exited with code 137.
Output for 5.5.31
array_key_exists( $my_array ) 0.0061869621276855 isset( $my_array ) 0.0034220218658447 isset_( $my_array ) 0.0056238174438477
Process exited with code 137.
Output for 5.5.30
array_key_exists( $my_array ) 0.003493070602417 isset( $my_array ) 0.0029909610748291 isset_( $my_array ) 0.0048370361328125
Process exited with code 137.
Output for 5.5.29
array_key_exists( $my_array ) 0.0032730102539062 isset( $my_array ) 0.0019059181213379 isset_( $my_array ) 0.0028970241546631 array_key_exists( $my_array_ref ) 1.8356950283051 isset( $my_array_ref ) 0.0010771751403809
Process exited with code 137.
Output for 5.5.28
array_key_exists( $my_array ) 0.009984016418457 isset( $my_array ) 0.0050520896911621 isset_( $my_array ) 0.0084919929504395
Process exited with code 137.
Output for 5.5.27
array_key_exists( $my_array ) 0.0034699440002441 isset( $my_array ) 0.002816915512085 isset_( $my_array ) 0.0036640167236328
Process exited with code 137.
Output for 5.5.26
array_key_exists( $my_array ) 0.0052928924560547 isset( $my_array ) 0.0041749477386475 isset_( $my_array ) 0.0047879219055176
Process exited with code 137.
Output for 5.5.25
array_key_exists( $my_array ) 0.004082202911377 isset( $my_array ) 0.0019159317016602 isset_( $my_array ) 0.0028789043426514 array_key_exists( $my_array_ref ) 1.837287902832 isset( $my_array_ref ) 0.0010688304901123
Process exited with code 137.
Output for 5.5.24
array_key_exists( $my_array ) 0.0030810832977295 isset( $my_array ) 0.0016648769378662 isset_( $my_array ) 0.0025181770324707 array_key_exists( $my_array_ref ) 1.7038578987122 isset( $my_array_ref ) 0.00090217590332031
Process exited with code 137.
Output for 5.4.45
array_key_exists( $my_array ) 0.015117168426514 isset( $my_array ) 0.0076799392700195 isset_( $my_array ) 0.0045030117034912
Process exited with code 137.
Output for 5.4.44
array_key_exists( $my_array ) 0.0019688606262207 isset( $my_array ) 0.0009911060333252 isset_( $my_array ) 0.001554012298584 array_key_exists( $my_array_ref ) 1.6423528194427 isset( $my_array_ref ) 0.0017318725585938
Process exited with code 137.
Output for 5.4.43
array_key_exists( $my_array ) 0.0033152103424072 isset( $my_array ) 0.0039610862731934 isset_( $my_array ) 0.0088191032409668
Process exited with code 137.
Output for 5.4.42
array_key_exists( $my_array ) 0.0035910606384277 isset( $my_array ) 0.0023040771484375 isset_( $my_array ) 0.0033459663391113
Process exited with code 137.
Output for 5.4.41
array_key_exists( $my_array ) 0.0032370090484619 isset( $my_array ) 0.002554178237915 isset_( $my_array ) 0.0033340454101562
Process exited with code 137.
Output for 5.4.40
array_key_exists( $my_array ) 0.0031049251556396 isset( $my_array ) 0.0017080307006836 isset_( $my_array ) 0.0067358016967773 array_key_exists( $my_array_ref ) 2.2402319908142 isset( $my_array_ref ) 0.0016689300537109
Process exited with code 137.
Output for 5.4.39
array_key_exists( $my_array ) 0.0034639835357666 isset( $my_array ) 0.0023248195648193 isset_( $my_array ) 0.0036411285400391
Process exited with code 137.
Output for 5.4.38
array_key_exists( $my_array ) 0.0047152042388916 isset( $my_array ) 0.0025620460510254 isset_( $my_array ) 0.0034828186035156
Process exited with code 137.
Output for 5.4.37
array_key_exists( $my_array ) 0.0033688545227051 isset( $my_array ) 0.0018560886383057 isset_( $my_array ) 0.0029280185699463
Process exited with code 137.
Output for 5.4.36
array_key_exists( $my_array ) 0.0043609142303467 isset( $my_array ) 0.0025439262390137 isset_( $my_array ) 0.0038609504699707
Process exited with code 137.
Output for 5.4.35
array_key_exists( $my_array ) 0.0034291744232178 isset( $my_array ) 0.0019030570983887 isset_( $my_array ) 0.0034561157226562
Process exited with code 137.
Output for 5.4.34
array_key_exists( $my_array ) 0.0034620761871338 isset( $my_array ) 0.0021429061889648 isset_( $my_array ) 0.0033121109008789
Process exited with code 137.
Output for 5.4.32
array_key_exists( $my_array ) 0.0021798610687256 isset( $my_array ) 0.0011711120605469 isset_( $my_array ) 0.0021109580993652 array_key_exists( $my_array_ref ) 1.7473528385162 isset( $my_array_ref ) 0.0010890960693359
Process exited with code 137.
Output for 5.4.31
array_key_exists( $my_array ) 0.0032289028167725 isset( $my_array ) 0.001945972442627 isset_( $my_array ) 0.003126859664917
Process exited with code 137.
Output for 5.4.30
array_key_exists( $my_array ) 0.0022890567779541 isset( $my_array ) 0.0012390613555908 isset_( $my_array ) 0.0022459030151367 array_key_exists( $my_array_ref ) 1.8107419013977 isset( $my_array_ref ) 0.0011410713195801
Process exited with code 137.
Output for 5.4.29
array_key_exists( $my_array ) 0.0037999153137207 isset( $my_array ) 0.0019760131835938 isset_( $my_array ) 0.0039610862731934
Process exited with code 137.
Output for 5.4.28
array_key_exists( $my_array ) 0.0023839473724365 isset( $my_array ) 0.0012619495391846 isset_( $my_array ) 0.002291202545166 array_key_exists( $my_array_ref ) 1.8554179668427 isset( $my_array_ref ) 0.0011229515075684
Process exited with code 137.
Output for 5.4.27
array_key_exists( $my_array ) 0.0023560523986816 isset( $my_array ) 0.0012121200561523 isset_( $my_array ) 0.0022499561309814 array_key_exists( $my_array_ref ) 1.8620209693909 isset( $my_array_ref ) 0.0012669563293457
Process exited with code 137.
Output for 5.4.26
array_key_exists( $my_array ) 0.0022599697113037 isset( $my_array ) 0.0012259483337402 isset_( $my_array ) 0.00217604637146 array_key_exists( $my_array_ref ) 1.8904361724854 isset( $my_array_ref ) 0.0011670589447021
Process exited with code 137.
Output for 5.4.25
array_key_exists( $my_array ) 0.0062379837036133 isset( $my_array ) 0.0034611225128174 isset_( $my_array ) 0.0062918663024902
Process exited with code 137.
Output for 5.4.24
array_key_exists( $my_array ) 0.004127025604248 isset( $my_array ) 0.0018489360809326 isset_( $my_array ) 0.0032908916473389
Process exited with code 137.
Output for 5.4.23
array_key_exists( $my_array ) 0.0054779052734375 isset( $my_array ) 0.0033550262451172 isset_( $my_array ) 0.004892110824585
Process exited with code 137.
Output for 5.4.22
array_key_exists( $my_array ) 0.0042910575866699 isset( $my_array ) 0.0025579929351807 isset_( $my_array ) 0.0045349597930908
Process exited with code 137.
Output for 5.4.21
array_key_exists( $my_array ) 0.0057339668273926 isset( $my_array ) 0.0040719509124756 isset_( $my_array ) 0.0056509971618652
Process exited with code 137.
Output for 5.4.20
array_key_exists( $my_array ) 0.0049071311950684 isset( $my_array ) 0.0033409595489502 isset_( $my_array ) 0.0039410591125488
Process exited with code 137.
Output for 5.4.19
array_key_exists( $my_array ) 0.0037059783935547 isset( $my_array ) 0.0020861625671387 isset_( $my_array ) 0.0028200149536133
Process exited with code 137.
Output for 5.4.18
array_key_exists( $my_array ) 0.0072579383850098 isset( $my_array ) 0.0039548873901367 isset_( $my_array ) 0.0057709217071533
Process exited with code 137.
Output for 5.4.17
array_key_exists( $my_array ) 0.0033550262451172 isset( $my_array ) 0.0019900798797607 isset_( $my_array ) 0.0027120113372803
Process exited with code 137.
Output for 5.4.16
array_key_exists( $my_array ) 0.0034379959106445 isset( $my_array ) 0.0019891262054443 isset_( $my_array ) 0.0026650428771973
Process exited with code 137.
Output for 5.4.15
array_key_exists( $my_array ) 0.0032520294189453 isset( $my_array ) 0.0019760131835938 isset_( $my_array ) 0.0027158260345459
Process exited with code 137.
Output for 5.4.14
array_key_exists( $my_array ) 0.0035769939422607 isset( $my_array ) 0.0018060207366943 isset_( $my_array ) 0.0028460025787354
Process exited with code 137.
Output for 5.4.13
array_key_exists( $my_array ) 0.0035409927368164 isset( $my_array ) 0.0024781227111816 isset_( $my_array ) 0.0044739246368408
Process exited with code 137.
Output for 5.4.12
array_key_exists( $my_array ) 0.0034430027008057 isset( $my_array ) 0.0018210411071777 isset_( $my_array ) 0.0029189586639404
Process exited with code 137.
Output for 5.4.11
array_key_exists( $my_array ) 0.0050549507141113 isset( $my_array ) 0.0029199123382568 isset_( $my_array ) 0.003303050994873
Process exited with code 137.
Output for 5.4.10
array_key_exists( $my_array ) 0.0035691261291504 isset( $my_array ) 0.0022368431091309 isset_( $my_array ) 0.0029771327972412
Process exited with code 137.
Output for 5.4.9
array_key_exists( $my_array ) 0.0033090114593506 isset( $my_array ) 0.0017890930175781 isset_( $my_array ) 0.0026609897613525
Process exited with code 137.
Output for 5.4.8
array_key_exists( $my_array ) 0.0036211013793945 isset( $my_array ) 0.0023200511932373 isset_( $my_array ) 0.0035500526428223
Process exited with code 137.
Output for 5.4.7
array_key_exists( $my_array ) 0.0032339096069336 isset( $my_array ) 0.0026640892028809 isset_( $my_array ) 0.0029499530792236
Process exited with code 137.
Output for 5.4.6
array_key_exists( $my_array ) 0.0034749507904053 isset( $my_array ) 0.0022299289703369 isset_( $my_array ) 0.004237174987793
Process exited with code 137.
Output for 5.4.5
array_key_exists( $my_array ) 0.0073869228363037 isset( $my_array ) 0.0027170181274414 isset_( $my_array ) 0.0035610198974609
Process exited with code 137.
Output for 5.4.4
array_key_exists( $my_array ) 0.0039241313934326 isset( $my_array ) 0.0038688182830811 isset_( $my_array ) 0.0037667751312256
Process exited with code 137.
Output for 5.4.3
array_key_exists( $my_array ) 0.0060579776763916 isset( $my_array ) 0.0045168399810791 isset_( $my_array ) 0.0054330825805664
Process exited with code 137.
Output for 5.4.2
array_key_exists( $my_array ) 0.0037059783935547 isset( $my_array ) 0.0018661022186279 isset_( $my_array ) 0.0033130645751953
Process exited with code 137.
Output for 5.4.1
array_key_exists( $my_array ) 0.0060269832611084 isset( $my_array ) 0.0043261051177979 isset_( $my_array ) 0.0053389072418213
Process exited with code 137.
Output for 5.4.0
array_key_exists( $my_array ) 0.0035321712493896 isset( $my_array ) 0.001953125 isset_( $my_array ) 0.0026278495788574
Process exited with code 137.
Output for 5.3.29
array_key_exists( $my_array ) 0.002601146697998 isset( $my_array ) 0.0012099742889404 isset_( $my_array ) 0.0023360252380371 array_key_exists( $my_array_ref ) 1.789204120636 isset( $my_array_ref ) 0.0011200904846191
Process exited with code 137.
Output for 5.3.28
array_key_exists( $my_array ) 0.0040810108184814 isset( $my_array ) 0.0020389556884766 isset_( $my_array ) 0.0039260387420654
Process exited with code 137.
Output for 5.3.27
array_key_exists( $my_array ) 0.0035381317138672 isset( $my_array ) 0.0015840530395508 isset_( $my_array ) 0.0031390190124512
Process exited with code 137.
Output for 5.3.26
array_key_exists( $my_array ) 0.0039060115814209 isset( $my_array ) 0.0018589496612549 isset_( $my_array ) 0.0035200119018555
Process exited with code 137.
Output for 5.3.25
array_key_exists( $my_array ) 0.0054290294647217 isset( $my_array ) 0.0027589797973633 isset_( $my_array ) 0.0042579174041748
Process exited with code 137.
Output for 5.3.24
array_key_exists( $my_array ) 0.0036571025848389 isset( $my_array ) 0.0022459030151367 isset_( $my_array ) 0.0038220882415771
Process exited with code 137.
Output for 5.3.23
array_key_exists( $my_array ) 0.0062470436096191 isset( $my_array ) 0.0020008087158203 isset_( $my_array ) 0.0034611225128174
Process exited with code 137.
Output for 5.3.22
array_key_exists( $my_array ) 0.007249116897583 isset( $my_array ) 0.0046470165252686 isset_( $my_array ) 0.0083041191101074
Process exited with code 137.
Output for 5.3.21
array_key_exists( $my_array ) 0.0041310787200928 isset( $my_array ) 0.0034768581390381 isset_( $my_array ) 0.0049529075622559
Process exited with code 137.
Output for 5.3.20
array_key_exists( $my_array ) 0.0036470890045166 isset( $my_array ) 0.0016400814056396 isset_( $my_array ) 0.0030131340026855
Process exited with code 137.
Output for 5.3.19
array_key_exists( $my_array ) 0.0038058757781982 isset( $my_array ) 0.0015661716461182 isset_( $my_array ) 0.0029749870300293
Process exited with code 137.
Output for 5.3.18
array_key_exists( $my_array ) 0.004410982131958 isset( $my_array ) 0.001572847366333 isset_( $my_array ) 0.0031089782714844
Process exited with code 137.
Output for 5.3.17
array_key_exists( $my_array ) 0.0038008689880371 isset( $my_array ) 0.0026590824127197 isset_( $my_array ) 0.0038471221923828
Process exited with code 137.
Output for 5.3.16
array_key_exists( $my_array ) 0.0057151317596436 isset( $my_array ) 0.0015840530395508 isset_( $my_array ) 0.0030100345611572
Process exited with code 137.
Output for 5.3.15
array_key_exists( $my_array ) 0.0036618709564209 isset( $my_array ) 0.0015990734100342 isset_( $my_array ) 0.0028860569000244
Process exited with code 137.
Output for 5.3.14
array_key_exists( $my_array ) 0.0060601234436035 isset( $my_array ) 0.0025858879089355 isset_( $my_array ) 0.0039551258087158
Process exited with code 137.
Output for 5.3.13
array_key_exists( $my_array ) 0.0037510395050049 isset( $my_array ) 0.0027921199798584 isset_( $my_array ) 0.0030930042266846
Process exited with code 137.
Output for 5.3.12
array_key_exists( $my_array ) 0.0073189735412598 isset( $my_array ) 0.0057508945465088 isset_( $my_array ) 0.008314847946167
Process exited with code 137.
Output for 5.3.11
array_key_exists( $my_array ) 0.0046429634094238 isset( $my_array ) 0.0024769306182861 isset_( $my_array ) 0.0046358108520508
Process exited with code 137.
Output for 5.3.10
array_key_exists( $my_array ) 0.0058648586273193 isset( $my_array ) 0.0016248226165771 isset_( $my_array ) 0.0033769607543945
Process exited with code 137.
Output for 5.3.9
array_key_exists( $my_array ) 0.0045840740203857 isset( $my_array ) 0.0028021335601807 isset_( $my_array ) 0.0041520595550537
Process exited with code 137.
Output for 5.3.8
array_key_exists( $my_array ) 0.0036859512329102 isset( $my_array ) 0.0016140937805176 isset_( $my_array ) 0.0033681392669678
Process exited with code 137.
Output for 5.3.7
array_key_exists( $my_array ) 0.0038778781890869 isset( $my_array ) 0.0017750263214111 isset_( $my_array ) 0.0033009052276611
Process exited with code 137.
Output for 5.3.6
array_key_exists( $my_array ) 0.0036711692810059 isset( $my_array ) 0.0023012161254883 isset_( $my_array ) 0.0041139125823975
Process exited with code 137.
Output for 5.3.5
array_key_exists( $my_array ) 0.0040929317474365 isset( $my_array ) 0.0021989345550537 isset_( $my_array ) 0.0043928623199463
Process exited with code 137.
Output for 5.3.4
array_key_exists( $my_array ) 0.0064570903778076 isset( $my_array ) 0.00325608253479 isset_( $my_array ) 0.0066180229187012
Process exited with code 137.
Output for 5.3.3
array_key_exists( $my_array ) 0.00406813621521 isset( $my_array ) 0.0018680095672607 isset_( $my_array ) 0.0036168098449707
Process exited with code 137.
Output for 5.3.2
array_key_exists( $my_array ) 0.0036470890045166 isset( $my_array ) 0.0017712116241455 isset_( $my_array ) 0.0031177997589111
Process exited with code 137.
Output for 5.3.1
array_key_exists( $my_array ) 0.0072131156921387 isset( $my_array ) 0.0037760734558105 isset_( $my_array ) 0.0080211162567139
Process exited with code 137.
Output for 5.3.0
array_key_exists( $my_array ) 0.0037569999694824 isset( $my_array ) 0.0017919540405273 isset_( $my_array ) 0.0032579898834229
Process exited with code 137.
Output for 5.2.17
array_key_exists( $my_array ) 0.0040078163146973 isset( $my_array ) 0.0018198490142822 isset_( $my_array ) 0.0047318935394287
Process exited with code 137.
Output for 5.2.16
array_key_exists( $my_array ) 0.0077757835388184 isset( $my_array ) 0.0041711330413818 isset_( $my_array ) 0.0069029331207275
Process exited with code 137.
Output for 5.2.15
array_key_exists( $my_array ) 0.0037789344787598 isset( $my_array ) 0.0017619132995605 isset_( $my_array ) 0.0046279430389404
Process exited with code 137.
Output for 5.2.14
array_key_exists( $my_array ) 0.003896951675415 isset( $my_array ) 0.0017969608306885 isset_( $my_array ) 0.0050079822540283
Process exited with code 137.
Output for 5.2.13
array_key_exists( $my_array ) 0.0073761940002441 isset( $my_array ) 0.0040760040283203 isset_( $my_array ) 0.0094530582427979
Process exited with code 137.
Output for 5.2.12
array_key_exists( $my_array ) 0.0037469863891602 isset( $my_array ) 0.0018172264099121 isset_( $my_array ) 0.0045971870422363
Process exited with code 137.
Output for 5.2.11
array_key_exists( $my_array ) 0.0040550231933594 isset( $my_array ) 0.002007007598877 isset_( $my_array ) 0.004439115524292
Process exited with code 137.
Output for 5.2.10
array_key_exists( $my_array ) 0.0041968822479248 isset( $my_array ) 0.0045251846313477 isset_( $my_array ) 0.0054159164428711
Process exited with code 137.
Output for 5.2.9
array_key_exists( $my_array ) 0.0042290687561035 isset( $my_array ) 0.0023019313812256 isset_( $my_array ) 0.0046908855438232
Process exited with code 137.
Output for 5.2.8
array_key_exists( $my_array ) 0.0037949085235596 isset( $my_array ) 0.0020120143890381 isset_( $my_array ) 0.0044159889221191
Process exited with code 137.
Output for 5.2.7
array_key_exists( $my_array ) 0.0037970542907715 isset( $my_array ) 0.0018141269683838 isset_( $my_array ) 0.0043349266052246
Process exited with code 137.
Output for 5.2.6
array_key_exists( $my_array ) 0.006432056427002 isset( $my_array ) 0.0018229484558105 isset_( $my_array ) 0.0047581195831299
Process exited with code 137.
Output for 5.2.5
array_key_exists( $my_array ) 0.0081570148468018 isset( $my_array ) 0.0057442188262939 isset_( $my_array ) 0.010660171508789
Process exited with code 137.
Output for 5.2.4
array_key_exists( $my_array ) 0.0043110847473145 isset( $my_array ) 0.0024449825286865 isset_( $my_array ) 0.0051310062408447
Process exited with code 137.
Output for 5.2.3
array_key_exists( $my_array ) 0.0046589374542236 isset( $my_array ) 0.0025980472564697 isset_( $my_array ) 0.0056281089782715
Process exited with code 137.
Output for 5.2.2
array_key_exists( $my_array ) 0.0059239864349365 isset( $my_array ) 0.0034539699554443 isset_( $my_array ) 0.005612850189209
Process exited with code 137.
Output for 5.2.1
array_key_exists( $my_array ) 0.003565788269043 isset( $my_array ) 0.001971960067749 isset_( $my_array ) 0.0047030448913574
Process exited with code 137.
Output for 5.2.0
array_key_exists( $my_array ) 0.0038847923278809 isset( $my_array ) 0.0017149448394775 isset_( $my_array ) 0.0041210651397705
Process exited with code 137.
Output for 5.1.6
array_key_exists( $my_array ) 0.0075669288635254 isset( $my_array ) 0.0046839714050293 isset_( $my_array ) 0.0081470012664795
Process exited with code 137.
Output for 5.1.5
array_key_exists( $my_array ) 0.0048048496246338 isset( $my_array ) 0.0019471645355225 isset_( $my_array ) 0.0043530464172363
Process exited with code 137.
Output for 5.1.4
array_key_exists( $my_array ) 0.0065279006958008 isset( $my_array ) 0.0065770149230957 isset_( $my_array ) 0.016035079956055
Process exited with code 137.
Output for 5.1.3
array_key_exists( $my_array ) 0.0043070316314697 isset( $my_array ) 0.0021471977233887 isset_( $my_array ) 0.0045101642608643
Process exited with code 137.
Output for 5.1.2
array_key_exists( $my_array ) 0.0045950412750244 isset( $my_array ) 0.0023198127746582 isset_( $my_array ) 0.0047059059143066
Process exited with code 137.
Output for 5.1.1
array_key_exists( $my_array ) 0.0043370723724365 isset( $my_array ) 0.0021800994873047 isset_( $my_array ) 0.0044989585876465
Process exited with code 137.
Output for 5.1.0
array_key_exists( $my_array ) 0.0048360824584961 isset( $my_array ) 0.0026848316192627 isset_( $my_array ) 0.0059781074523926
Process exited with code 137.
Output for 5.0.0 - 5.0.5
Parse error: parse error, unexpected T_ARRAY, expecting '&' or T_VARIABLE in /in/6oEO6 on line 4
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_ARRAY, expecting '&' or T_VARIABLE or T_CONST in /in/6oEO6 on line 4
Process exited with code 255.
Output for 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
Parse error: parse error, unexpected T_ARRAY, expecting '&' or T_VARIABLE or T_CONST in /in/6oEO6 on line 4
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `'&'' or `T_VARIABLE' or `T_CONST' in /in/6oEO6 on line 4
Process exited with code 255.
Output for 4.3.0
Parse error: parse error, unexpected T_ARRAY, expecting '&' or T_VARIABLE or T_CONST in /in/NdK0H on line 4
Process exited with code 255.

preferences:
144.18 ms | 401 KiB | 174 Q