3v4l.org

run code in 300+ PHP versions simultaneously
<?php function prepare($num) { echo "preparing array with $num elements ... "; $array = array(); for ($i=0; $i<$num; $i++) { $array[uniqid('', true)] = true; } echo 'OK', PHP_EOL; return $array; } function test($num, $cycles, $tries) { echo "@cycles: ", $cycles, PHP_EOL; echo "@length: ", $num, PHP_EOL; echo "@tries: ", $tries, PHP_EOL; $array = prepare($num); $key = uniqid('', true); echo "array_key_exists: "; $times = array(); for ($j=0; $j<$tries; $j++) { $t = microtime(true); for($i = 0; $i < $cycles; $i++) { array_key_exists($key, $array); } $times[$j] = microtime(true) - $t; } printf('%0.4f second(s)'.PHP_EOL, array_sum($times)/$tries); echo "isset: "; $times = array(); for ($j=0; $j<$tries; $j++) { $t = microtime(true); for($i = 0; $i < $cycles; $i++) { isset($array[$key]); } $times[$j] = microtime(true) - $t; } printf('%0.4f second(s)'.PHP_EOL, array_sum($times)/$tries); } $cycles = 100000; $tries = 5; echo '----------------------', PHP_EOL; test(1000, $cycles, $tries); echo '----------------------', PHP_EOL; test(10000, $cycles, $tries); echo '----------------------', PHP_EOL; test(100000, $cycles, $tries); echo '----------------------', PHP_EOL;
Output for 7.0.0
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0036 second(s) isset: 0.0025 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0040 second(s) isset: 0.0025 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0042 second(s) isset: 0.0029 second(s) ----------------------
Output for 5.6.16
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0193 second(s) isset: 0.0066 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0185 second(s) isset: 0.0111 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0159 second(s) isset: 0.0067 second(s) ----------------------
Output for 5.6.15
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0133 second(s) isset: 0.0075 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0132 second(s) isset: 0.0061 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0144 second(s) isset: 0.0060 second(s) ----------------------
Output for 5.6.14
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0161 second(s) isset: 0.0072 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0162 second(s) isset: 0.0084 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0150 second(s) isset: 0.0073 second(s) ----------------------
Output for 5.6.13
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0133 second(s) isset: 0.0074 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0133 second(s) isset: 0.0083 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0140 second(s) isset: 0.0070 second(s) ----------------------
Output for 5.6.12
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0148 second(s) isset: 0.0065 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0269 second(s) isset: 0.0122 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0129 second(s) isset: 0.0069 second(s) ----------------------
Output for 5.6.11
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0142 second(s) isset: 0.0071 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0149 second(s) isset: 0.0106 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0143 second(s) isset: 0.0071 second(s) ----------------------
Output for 5.6.10
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0270 second(s) isset: 0.0099 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0259 second(s) isset: 0.0108 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0139 second(s) isset: 0.0065 second(s) ----------------------
Output for 5.6.9
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0233 second(s) isset: 0.0081 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0138 second(s) isset: 0.0068 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0135 second(s) isset: 0.0068 second(s) ----------------------
Output for 5.6.8
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0177 second(s) isset: 0.0077 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0206 second(s) isset: 0.0063 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0259 second(s) isset: 0.0095 second(s) ----------------------
Output for 5.6.7
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0193 second(s) isset: 0.0070 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0150 second(s) isset: 0.0068 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0167 second(s) isset: 0.0065 second(s) ----------------------
Output for 5.6.6
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0183 second(s) isset: 0.0069 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0137 second(s) isset: 0.0060 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0156 second(s) isset: 0.0067 second(s) ----------------------
Output for 5.6.5
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0151 second(s) isset: 0.0070 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0140 second(s) isset: 0.0080 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0152 second(s) isset: 0.0067 second(s) ----------------------
Output for 5.6.4
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0159 second(s) isset: 0.0068 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0144 second(s) isset: 0.0067 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0284 second(s) isset: 0.0079 second(s) ----------------------
Output for 5.6.3
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0182 second(s) isset: 0.0083 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0197 second(s) isset: 0.0077 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0260 second(s) isset: 0.0097 second(s) ----------------------
Output for 5.6.2
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0141 second(s) isset: 0.0072 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0261 second(s) isset: 0.0105 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0172 second(s) isset: 0.0086 second(s) ----------------------
Output for 5.6.1
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0195 second(s) isset: 0.0061 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0194 second(s) isset: 0.0112 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0237 second(s) isset: 0.0098 second(s) ----------------------
Output for 5.6.0
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0178 second(s) isset: 0.0104 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0228 second(s) isset: 0.0073 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0139 second(s) isset: 0.0063 second(s) ----------------------
Output for 5.5.30
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0222 second(s) isset: 0.0064 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0138 second(s) isset: 0.0060 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0147 second(s) isset: 0.0079 second(s) ----------------------
Output for 5.5.29
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0193 second(s) isset: 0.0069 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0162 second(s) isset: 0.0072 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0209 second(s) isset: 0.0069 second(s) ----------------------
Output for 5.5.28
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0176 second(s) isset: 0.0114 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0155 second(s) isset: 0.0085 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0236 second(s) isset: 0.0071 second(s) ----------------------
Output for 5.5.27
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0222 second(s) isset: 0.0099 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0217 second(s) isset: 0.0079 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0147 second(s) isset: 0.0063 second(s) ----------------------
Output for 5.5.26
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0162 second(s) isset: 0.0069 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0203 second(s) isset: 0.0065 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0244 second(s) isset: 0.0084 second(s) ----------------------
Output for 5.5.25
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0175 second(s) isset: 0.0081 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0247 second(s) isset: 0.0117 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0172 second(s) isset: 0.0067 second(s) ----------------------
Output for 5.5.24
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0206 second(s) isset: 0.0069 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0145 second(s) isset: 0.0062 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0169 second(s) isset: 0.0088 second(s) ----------------------
Output for 5.5.23
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0134 second(s) isset: 0.0152 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0155 second(s) isset: 0.0087 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0138 second(s) isset: 0.0063 second(s) ----------------------
Output for 5.5.22
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0253 second(s) isset: 0.0183 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0497 second(s) isset: 0.0222 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0482 second(s) isset: 0.0083 second(s) ----------------------
Output for 5.5.21
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0375 second(s) isset: 0.0099 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0625 second(s) isset: 0.0214 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0219 second(s) isset: 0.0082 second(s) ----------------------
Output for 5.5.20
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0204 second(s) isset: 0.0123 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0279 second(s) isset: 0.0144 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0221 second(s) isset: 0.0166 second(s) ----------------------
Output for 5.5.19
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0316 second(s) isset: 0.0088 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0284 second(s) isset: 0.0071 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0168 second(s) isset: 0.0062 second(s) ----------------------
Output for 5.5.18
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0346 second(s) isset: 0.0141 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0465 second(s) isset: 0.0164 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0264 second(s) isset: 0.0140 second(s) ----------------------
Output for 5.5.17
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0306 second(s) isset: 0.0103 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0142 second(s) isset: 0.0069 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0178 second(s) isset: 0.0122 second(s) ----------------------
Output for 5.5.16
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0313 second(s) isset: 0.0109 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0258 second(s) isset: 0.0083 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0169 second(s) isset: 0.0062 second(s) ----------------------
Output for 5.5.15
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0341 second(s) isset: 0.0102 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0368 second(s) isset: 0.0123 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0217 second(s) isset: 0.0077 second(s) ----------------------
Output for 5.5.14
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0250 second(s) isset: 0.0084 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0203 second(s) isset: 0.0070 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0180 second(s) isset: 0.0076 second(s) ----------------------
Output for 5.5.13
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0208 second(s) isset: 0.0134 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0231 second(s) isset: 0.0127 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0154 second(s) isset: 0.0076 second(s) ----------------------
Output for 5.5.12
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0270 second(s) isset: 0.0135 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0348 second(s) isset: 0.0117 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0217 second(s) isset: 0.0090 second(s) ----------------------
Output for 5.5.11
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0207 second(s) isset: 0.0078 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0192 second(s) isset: 0.0068 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0225 second(s) isset: 0.0075 second(s) ----------------------
Output for 5.5.10
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0204 second(s) isset: 0.0067 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0167 second(s) isset: 0.0088 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0239 second(s) isset: 0.0088 second(s) ----------------------
Output for 5.5.9
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0158 second(s) isset: 0.0062 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0134 second(s) isset: 0.0066 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0135 second(s) isset: 0.0065 second(s) ----------------------
Output for 5.5.8
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0157 second(s) isset: 0.0063 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0161 second(s) isset: 0.0076 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0144 second(s) isset: 0.0062 second(s) ----------------------
Output for 5.5.7
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0233 second(s) isset: 0.0097 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0160 second(s) isset: 0.0060 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0144 second(s) isset: 0.0062 second(s) ----------------------
Output for 5.5.6
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0145 second(s) isset: 0.0087 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0136 second(s) isset: 0.0063 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0144 second(s) isset: 0.0063 second(s) ----------------------
Output for 5.5.5
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0163 second(s) isset: 0.0064 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0136 second(s) isset: 0.0061 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0141 second(s) isset: 0.0063 second(s) ----------------------
Output for 5.5.4
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0192 second(s) isset: 0.0061 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0142 second(s) isset: 0.0062 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0208 second(s) isset: 0.0063 second(s) ----------------------
Output for 5.5.3
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0136 second(s) isset: 0.0061 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0169 second(s) isset: 0.0061 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0135 second(s) isset: 0.0089 second(s) ----------------------
Output for 5.5.2
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0130 second(s) isset: 0.0060 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0164 second(s) isset: 0.0070 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0140 second(s) isset: 0.0082 second(s) ----------------------
Output for 5.5.1
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0133 second(s) isset: 0.0062 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0139 second(s) isset: 0.0100 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0145 second(s) isset: 0.0063 second(s) ----------------------
Output for 5.5.0
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0232 second(s) isset: 0.0065 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0141 second(s) isset: 0.0074 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0156 second(s) isset: 0.0073 second(s) ----------------------
Output for 5.4.45
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0198 second(s) isset: 0.0070 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0149 second(s) isset: 0.0067 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0150 second(s) isset: 0.0064 second(s) ----------------------
Output for 5.4.44
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0245 second(s) isset: 0.0123 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0168 second(s) isset: 0.0070 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0186 second(s) isset: 0.0127 second(s) ----------------------
Output for 5.4.43
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0200 second(s) isset: 0.0085 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0185 second(s) isset: 0.0064 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0219 second(s) isset: 0.0071 second(s) ----------------------
Output for 5.4.42
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0150 second(s) isset: 0.0081 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0219 second(s) isset: 0.0103 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0288 second(s) isset: 0.0117 second(s) ----------------------
Output for 5.4.41
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0327 second(s) isset: 0.0129 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0238 second(s) isset: 0.0083 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0175 second(s) isset: 0.0074 second(s) ----------------------
Output for 5.4.40
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0156 second(s) isset: 0.0065 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0150 second(s) isset: 0.0066 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0169 second(s) isset: 0.0064 second(s) ----------------------
Output for 5.4.39
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0163 second(s) isset: 0.0061 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0231 second(s) isset: 0.0098 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0164 second(s) isset: 0.0080 second(s) ----------------------
Output for 5.4.38
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0201 second(s) isset: 0.0073 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0137 second(s) isset: 0.0090 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0150 second(s) isset: 0.0075 second(s) ----------------------
Output for 5.4.37
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0260 second(s) isset: 0.0123 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0487 second(s) isset: 0.0164 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0328 second(s) isset: 0.0138 second(s) ----------------------
Output for 5.4.36
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0299 second(s) isset: 0.0168 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0287 second(s) isset: 0.0095 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0322 second(s) isset: 0.0204 second(s) ----------------------
Output for 5.4.35
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0288 second(s) isset: 0.0069 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0181 second(s) isset: 0.0073 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0469 second(s) isset: 0.0151 second(s) ----------------------
Output for 5.4.34
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0177 second(s) isset: 0.0084 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0196 second(s) isset: 0.0094 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0287 second(s) isset: 0.0088 second(s) ----------------------
Output for 5.4.33
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0142 second(s) isset: 0.0063 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0142 second(s) isset: 0.0064 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0148 second(s) isset: 0.0096 second(s) ----------------------
Output for 5.4.32
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0190 second(s) isset: 0.0077 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0154 second(s) isset: 0.0062 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0193 second(s) isset: 0.0100 second(s) ----------------------
Output for 5.4.31
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0214 second(s) isset: 0.0114 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0159 second(s) isset: 0.0074 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0194 second(s) isset: 0.0081 second(s) ----------------------
Output for 5.4.30
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0263 second(s) isset: 0.0090 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0211 second(s) isset: 0.0065 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0217 second(s) isset: 0.0087 second(s) ----------------------
Output for 5.4.29
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0380 second(s) isset: 0.0095 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0402 second(s) isset: 0.0190 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0317 second(s) isset: 0.0104 second(s) ----------------------
Output for 5.4.28
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0316 second(s) isset: 0.0221 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0230 second(s) isset: 0.0078 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0256 second(s) isset: 0.0070 second(s) ----------------------
Output for 5.4.27
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0218 second(s) isset: 0.0088 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0226 second(s) isset: 0.0091 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0266 second(s) isset: 0.0117 second(s) ----------------------
Output for 5.4.26
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0171 second(s) isset: 0.0088 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0193 second(s) isset: 0.0110 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0142 second(s) isset: 0.0078 second(s) ----------------------
Output for 5.4.25
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0256 second(s) isset: 0.0109 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0263 second(s) isset: 0.0059 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0157 second(s) isset: 0.0066 second(s) ----------------------
Output for 5.4.24
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0250 second(s) isset: 0.0100 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0156 second(s) isset: 0.0099 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0198 second(s) isset: 0.0068 second(s) ----------------------
Output for 5.4.23
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0141 second(s) isset: 0.0060 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0146 second(s) isset: 0.0061 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0135 second(s) isset: 0.0061 second(s) ----------------------
Output for 5.4.22
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0135 second(s) isset: 0.0064 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0172 second(s) isset: 0.0073 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0129 second(s) isset: 0.0061 second(s) ----------------------
Output for 5.4.21
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0261 second(s) isset: 0.0093 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0130 second(s) isset: 0.0060 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0198 second(s) isset: 0.0062 second(s) ----------------------
Output for 5.4.20
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0139 second(s) isset: 0.0063 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0130 second(s) isset: 0.0070 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0144 second(s) isset: 0.0062 second(s) ----------------------
Output for 5.4.19
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0222 second(s) isset: 0.0061 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0142 second(s) isset: 0.0063 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0145 second(s) isset: 0.0071 second(s) ----------------------
Output for 5.4.18
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0164 second(s) isset: 0.0069 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0142 second(s) isset: 0.0060 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0134 second(s) isset: 0.0065 second(s) ----------------------
Output for 5.4.17
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0159 second(s) isset: 0.0068 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0204 second(s) isset: 0.0097 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0295 second(s) isset: 0.0089 second(s) ----------------------
Output for 5.4.16
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0260 second(s) isset: 0.0064 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0199 second(s) isset: 0.0093 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0177 second(s) isset: 0.0070 second(s) ----------------------
Output for 5.4.15
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0168 second(s) isset: 0.0067 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0149 second(s) isset: 0.0062 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0168 second(s) isset: 0.0083 second(s) ----------------------
Output for 5.4.14
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0146 second(s) isset: 0.0064 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0206 second(s) isset: 0.0064 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0155 second(s) isset: 0.0081 second(s) ----------------------
Output for 5.4.13
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0181 second(s) isset: 0.0083 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0137 second(s) isset: 0.0062 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0169 second(s) isset: 0.0093 second(s) ----------------------
Output for 5.4.12
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0142 second(s) isset: 0.0067 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0172 second(s) isset: 0.0100 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0159 second(s) isset: 0.0131 second(s) ----------------------
Output for 5.4.11
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0226 second(s) isset: 0.0068 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0191 second(s) isset: 0.0075 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0202 second(s) isset: 0.0063 second(s) ----------------------
Output for 5.4.10
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0258 second(s) isset: 0.0097 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0241 second(s) isset: 0.0084 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0135 second(s) isset: 0.0064 second(s) ----------------------
Output for 5.4.9
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0223 second(s) isset: 0.0080 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0172 second(s) isset: 0.0082 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0141 second(s) isset: 0.0063 second(s) ----------------------
Output for 5.4.8
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0160 second(s) isset: 0.0076 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0135 second(s) isset: 0.0065 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0173 second(s) isset: 0.0079 second(s) ----------------------
Output for 5.4.7
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0199 second(s) isset: 0.0173 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0151 second(s) isset: 0.0073 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0169 second(s) isset: 0.0069 second(s) ----------------------
Output for 5.4.6
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0178 second(s) isset: 0.0065 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0145 second(s) isset: 0.0085 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0175 second(s) isset: 0.0072 second(s) ----------------------
Output for 5.4.5
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0158 second(s) isset: 0.0096 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0205 second(s) isset: 0.0060 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0155 second(s) isset: 0.0066 second(s) ----------------------
Output for 5.4.4
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0287 second(s) isset: 0.0104 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0194 second(s) isset: 0.0066 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0183 second(s) isset: 0.0064 second(s) ----------------------
Output for 5.4.3
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0187 second(s) isset: 0.0062 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0147 second(s) isset: 0.0065 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0163 second(s) isset: 0.0061 second(s) ----------------------
Output for 5.4.2
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0179 second(s) isset: 0.0065 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0143 second(s) isset: 0.0062 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0133 second(s) isset: 0.0061 second(s) ----------------------
Output for 5.4.1
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0149 second(s) isset: 0.0060 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0135 second(s) isset: 0.0062 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0130 second(s) isset: 0.0060 second(s) ----------------------
Output for 5.4.0
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0287 second(s) isset: 0.0083 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0144 second(s) isset: 0.0065 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0134 second(s) isset: 0.0059 second(s) ----------------------
Output for 5.3.29
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0241 second(s) isset: 0.0078 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0318 second(s) isset: 0.0092 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0280 second(s) isset: 0.0083 second(s) ----------------------
Output for 5.3.28
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0182 second(s) isset: 0.0066 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0171 second(s) isset: 0.0066 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0208 second(s) isset: 0.0069 second(s) ----------------------
Output for 5.3.27
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0364 second(s) isset: 0.0095 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0198 second(s) isset: 0.0084 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0163 second(s) isset: 0.0078 second(s) ----------------------
Output for 5.3.26
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0390 second(s) isset: 0.0115 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0191 second(s) isset: 0.0094 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0198 second(s) isset: 0.0092 second(s) ----------------------
Output for 5.3.25
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0195 second(s) isset: 0.0080 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0160 second(s) isset: 0.0073 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0284 second(s) isset: 0.0113 second(s) ----------------------
Output for 5.3.24
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0248 second(s) isset: 0.0106 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0338 second(s) isset: 0.0107 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0159 second(s) isset: 0.0072 second(s) ----------------------
Output for 5.3.23
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0197 second(s) isset: 0.0073 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0162 second(s) isset: 0.0073 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0156 second(s) isset: 0.0071 second(s) ----------------------
Output for 5.3.22
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0165 second(s) isset: 0.0072 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0266 second(s) isset: 0.0068 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0170 second(s) isset: 0.0071 second(s) ----------------------
Output for 5.3.21
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0175 second(s) isset: 0.0069 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0180 second(s) isset: 0.0101 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0193 second(s) isset: 0.0072 second(s) ----------------------
Output for 5.3.20
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0326 second(s) isset: 0.0115 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0341 second(s) isset: 0.0120 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0167 second(s) isset: 0.0074 second(s) ----------------------
Output for 5.3.19
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0267 second(s) isset: 0.0070 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0184 second(s) isset: 0.0072 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0218 second(s) isset: 0.0064 second(s) ----------------------
Output for 5.3.18
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0318 second(s) isset: 0.0115 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0295 second(s) isset: 0.0087 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0178 second(s) isset: 0.0076 second(s) ----------------------
Output for 5.3.17
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0222 second(s) isset: 0.0137 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0248 second(s) isset: 0.0077 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0205 second(s) isset: 0.0069 second(s) ----------------------
Output for 5.3.16
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0172 second(s) isset: 0.0073 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0244 second(s) isset: 0.0091 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0247 second(s) isset: 0.0076 second(s) ----------------------
Output for 5.3.15
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0231 second(s) isset: 0.0066 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0161 second(s) isset: 0.0066 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0207 second(s) isset: 0.0083 second(s) ----------------------
Output for 5.3.14
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0202 second(s) isset: 0.0068 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0179 second(s) isset: 0.0072 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0165 second(s) isset: 0.0068 second(s) ----------------------
Output for 5.3.13
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0168 second(s) isset: 0.0073 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0159 second(s) isset: 0.0065 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0274 second(s) isset: 0.0072 second(s) ----------------------
Output for 5.3.12
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0159 second(s) isset: 0.0069 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0158 second(s) isset: 0.0069 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0165 second(s) isset: 0.0074 second(s) ----------------------
Output for 5.3.11
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0172 second(s) isset: 0.0068 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0163 second(s) isset: 0.0067 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0161 second(s) isset: 0.0066 second(s) ----------------------
Output for 5.3.10
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0195 second(s) isset: 0.0120 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0155 second(s) isset: 0.0071 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0162 second(s) isset: 0.0077 second(s) ----------------------
Output for 5.3.9
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0163 second(s) isset: 0.0075 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0203 second(s) isset: 0.0074 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0170 second(s) isset: 0.0072 second(s) ----------------------
Output for 5.3.8
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0264 second(s) isset: 0.0102 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0195 second(s) isset: 0.0067 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0164 second(s) isset: 0.0072 second(s) ----------------------
Output for 5.3.7
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0295 second(s) isset: 0.0094 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0179 second(s) isset: 0.0109 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0165 second(s) isset: 0.0067 second(s) ----------------------
Output for 5.3.6
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0174 second(s) isset: 0.0071 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0168 second(s) isset: 0.0069 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0216 second(s) isset: 0.0076 second(s) ----------------------
Output for 5.3.5
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0175 second(s) isset: 0.0071 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0208 second(s) isset: 0.0087 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0161 second(s) isset: 0.0105 second(s) ----------------------
Output for 5.3.4
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0363 second(s) isset: 0.0122 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0192 second(s) isset: 0.0073 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0220 second(s) isset: 0.0108 second(s) ----------------------
Output for 5.3.3
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0196 second(s) isset: 0.0067 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0161 second(s) isset: 0.0070 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0166 second(s) isset: 0.0078 second(s) ----------------------
Output for 5.3.2
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0174 second(s) isset: 0.0071 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0168 second(s) isset: 0.0068 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0222 second(s) isset: 0.0107 second(s) ----------------------
Output for 5.3.1
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0167 second(s) isset: 0.0073 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0177 second(s) isset: 0.0078 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0173 second(s) isset: 0.0079 second(s) ----------------------
Output for 5.3.0
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0158 second(s) isset: 0.0065 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0163 second(s) isset: 0.0071 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0225 second(s) isset: 0.0107 second(s) ----------------------
Output for 5.2.17
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0322 second(s) isset: 0.0092 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0251 second(s) isset: 0.0166 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0228 second(s) isset: 0.0108 second(s) ----------------------
Output for 5.2.16
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0212 second(s) isset: 0.0094 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0267 second(s) isset: 0.0100 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0238 second(s) isset: 0.0111 second(s) ----------------------
Output for 5.2.15
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0243 second(s) isset: 0.0084 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0270 second(s) isset: 0.0176 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0256 second(s) isset: 0.0180 second(s) ----------------------
Output for 5.2.14
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0194 second(s) isset: 0.0099 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0231 second(s) isset: 0.0100 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0322 second(s) isset: 0.0139 second(s) ----------------------
Output for 5.2.13
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0189 second(s) isset: 0.0081 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0176 second(s) isset: 0.0089 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0317 second(s) isset: 0.0084 second(s) ----------------------
Output for 5.2.12
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0169 second(s) isset: 0.0090 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0249 second(s) isset: 0.0085 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0173 second(s) isset: 0.0082 second(s) ----------------------
Output for 5.2.11
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0245 second(s) isset: 0.0086 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0169 second(s) isset: 0.0087 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0182 second(s) isset: 0.0082 second(s) ----------------------
Output for 5.2.10
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0299 second(s) isset: 0.0088 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0171 second(s) isset: 0.0082 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0228 second(s) isset: 0.0088 second(s) ----------------------
Output for 5.2.9
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0296 second(s) isset: 0.0140 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0292 second(s) isset: 0.0142 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0182 second(s) isset: 0.0084 second(s) ----------------------
Output for 5.2.8
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0199 second(s) isset: 0.0089 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0262 second(s) isset: 0.0148 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0176 second(s) isset: 0.0101 second(s) ----------------------
Output for 5.2.7
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0213 second(s) isset: 0.0094 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0197 second(s) isset: 0.0111 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0178 second(s) isset: 0.0083 second(s) ----------------------
Output for 5.2.6
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0271 second(s) isset: 0.0087 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0180 second(s) isset: 0.0083 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0337 second(s) isset: 0.0125 second(s) ----------------------
Output for 5.2.5
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0207 second(s) isset: 0.0083 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0175 second(s) isset: 0.0094 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0232 second(s) isset: 0.0108 second(s) ----------------------
Output for 5.2.4
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0197 second(s) isset: 0.0128 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0380 second(s) isset: 0.0105 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0248 second(s) isset: 0.0092 second(s) ----------------------
Output for 5.2.3
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0274 second(s) isset: 0.0131 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0318 second(s) isset: 0.0116 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0329 second(s) isset: 0.0146 second(s) ----------------------
Output for 5.2.2
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0187 second(s) isset: 0.0081 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0179 second(s) isset: 0.0088 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0231 second(s) isset: 0.0092 second(s) ----------------------
Output for 5.2.1
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0321 second(s) isset: 0.0102 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0178 second(s) isset: 0.0089 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0173 second(s) isset: 0.0098 second(s) ----------------------
Output for 5.2.0
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0330 second(s) isset: 0.0093 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0197 second(s) isset: 0.0097 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0248 second(s) isset: 0.0138 second(s) ----------------------
Output for 5.1.6
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0216 second(s) isset: 0.0162 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0291 second(s) isset: 0.0146 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0212 second(s) isset: 0.0089 second(s) ----------------------
Output for 5.1.5
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0256 second(s) isset: 0.0081 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0162 second(s) isset: 0.0088 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0160 second(s) isset: 0.0083 second(s) ----------------------
Output for 5.1.4
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0184 second(s) isset: 0.0088 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0169 second(s) isset: 0.0082 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0180 second(s) isset: 0.0100 second(s) ----------------------
Output for 5.1.3
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0162 second(s) isset: 0.0083 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0181 second(s) isset: 0.0090 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0172 second(s) isset: 0.0099 second(s) ----------------------
Output for 5.1.2
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0158 second(s) isset: 0.0086 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0278 second(s) isset: 0.0099 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0149 second(s) isset: 0.0080 second(s) ----------------------
Output for 5.1.1
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0287 second(s) isset: 0.0147 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0204 second(s) isset: 0.0091 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0190 second(s) isset: 0.0086 second(s) ----------------------
Output for 5.1.0
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0198 second(s) isset: 0.0093 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0177 second(s) isset: 0.0107 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0264 second(s) isset: 0.0090 second(s) ----------------------
Output for 5.0.5
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0345 second(s) isset: 0.0222 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0345 second(s) isset: 0.0229 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0339 second(s) isset: 0.0242 second(s) ----------------------
Output for 5.0.4
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0574 second(s) isset: 0.0413 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0405 second(s) isset: 0.0303 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0351 second(s) isset: 0.0225 second(s) ----------------------
Output for 5.0.3
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0332 second(s) isset: 0.0221 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0387 second(s) isset: 0.0380 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0357 second(s) isset: 0.0218 second(s) ----------------------
Output for 5.0.2
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0358 second(s) isset: 0.0310 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0623 second(s) isset: 0.0256 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0385 second(s) isset: 0.0265 second(s) ----------------------
Output for 5.0.1
---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 47 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 1000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 1000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0364 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0223 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 49 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 10000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 10000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0352 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0230 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 51 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 100000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0369 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0246 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 53 PHP_EOL
Output for 5.0.0
---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 47 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 1000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 1000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0374 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0254 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 49 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 10000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 10000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0316 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0218 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 51 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 100000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0615 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0355 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 53 PHP_EOL
Output for 4.4.9
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0329 second(s) isset: 0.0274 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0329 second(s) isset: 0.0241 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: -0.1611 second(s) isset: 0.0244 second(s) ----------------------
Output for 4.4.8
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0358 second(s) isset: 0.0263 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0558 second(s) isset: 0.0323 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: -0.1642 second(s) isset: 0.0304 second(s) ----------------------
Output for 4.4.7
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0424 second(s) isset: 0.0233 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0355 second(s) isset: 0.0396 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: -0.1637 second(s) isset: 0.0244 second(s) ----------------------
Output for 4.4.6
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0345 second(s) isset: 0.0243 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0321 second(s) isset: 0.0255 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0333 second(s) isset: -0.1763 second(s) ----------------------
Output for 4.4.5
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0375 second(s) isset: 0.0250 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0323 second(s) isset: 0.0234 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0341 second(s) isset: -0.1759 second(s) ----------------------
Output for 4.4.4
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0334 second(s) isset: 0.0282 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0341 second(s) isset: 0.0245 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0308 second(s) isset: -0.1766 second(s) ----------------------
Output for 4.4.3
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0320 second(s) isset: 0.0245 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0399 second(s) isset: 0.0234 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0325 second(s) isset: -0.1753 second(s) ----------------------
Output for 4.4.2
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0349 second(s) isset: 0.0280 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0416 second(s) isset: 0.0280 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: -0.1552 second(s) isset: 0.0376 second(s) ----------------------
Output for 4.4.1
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0548 second(s) isset: 0.0383 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0522 second(s) isset: 0.0334 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0360 second(s) isset: 0.0309 second(s) ----------------------
Output for 4.4.0
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0342 second(s) isset: 0.0310 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0338 second(s) isset: 0.0263 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0346 second(s) isset: 0.0232 second(s) ----------------------
Output for 4.3.11
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0357 second(s) isset: 0.0314 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0632 second(s) isset: 0.0415 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0407 second(s) isset: 0.0292 second(s) ----------------------
Output for 4.3.10
---------------------- @cycles: 100000 @length: 1000 @tries: 5 preparing array with 1000 elements ... OK array_key_exists: 0.0399 second(s) isset: 0.0252 second(s) ---------------------- @cycles: 100000 @length: 10000 @tries: 5 preparing array with 10000 elements ... OK array_key_exists: 0.0339 second(s) isset: 0.0262 second(s) ---------------------- @cycles: 100000 @length: 100000 @tries: 5 preparing array with 100000 elements ... OK array_key_exists: 0.0324 second(s) isset: -0.1663 second(s) ----------------------
Output for 4.3.9
---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 47 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 1000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 1000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0599 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0298 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 49 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 10000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 10000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0307 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0242 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 51 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 100000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 -0.1469 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0246 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 53 PHP_EOL
Output for 4.3.8
---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 47 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 1000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 1000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0328 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0240 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 49 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 10000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 10000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0359 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0231 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 51 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 100000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0335 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 -0.1714 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 53 PHP_EOL
Output for 4.3.7
---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 47 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 1000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 1000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0564 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0401 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 49 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 10000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 10000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0539 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0405 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 51 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 100000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0353 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0247 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 53 PHP_EOL
Output for 4.3.6
---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 47 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 1000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 1000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0408 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0232 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 49 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 10000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 10000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0370 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0232 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 51 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 100000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0351 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 -0.1749 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 53 PHP_EOL
Output for 4.3.5
---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 47 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 1000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 1000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0356 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0284 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 49 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 10000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 10000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0298 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0241 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 51 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 100000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 -0.1427 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0472 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 53 PHP_EOL
Output for 4.3.4
---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 47 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 1000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 1000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0320 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0236 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 49 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 10000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 10000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0552 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0365 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 51 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 100000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 -0.1600 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0241 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 53 PHP_EOL
Output for 4.3.3
---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 47 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 1000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 1000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0340 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0230 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 49 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 10000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 10000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0410 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0227 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 51 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 100000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0321 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 -0.1742 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 53 PHP_EOL
Output for 4.3.2
---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 47 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 1000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 1000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0370 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0236 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 49 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 10000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 10000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0343 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0261 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 51 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 100000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0323 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 -0.1756 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 53 PHP_EOL
Output for 4.3.1
---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 47 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 1000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 1000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0438 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0276 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 49 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 10000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 10000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0314 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0232 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 51 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 100000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0325 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 -0.1746 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 53 PHP_EOL
Output for 4.3.0
---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 47 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 1000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 1000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0491 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0293 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 49 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 10000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 10000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 0.0388 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0234 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 51 PHP_EOL@cycles: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 14 PHP_EOL@length: 100000 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 15 PHP_EOL@tries: 5 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 16 PHP_EOLpreparing array with 100000 elements ... OK Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 9 PHP_EOLarray_key_exists: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 30 -0.1498 second(s)PHP_EOLisset: Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 41 0.0225 second(s)PHP_EOL---------------------- Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/gQe30 on line 53 PHP_EOL

preferences:
147.07 ms | 409 KiB | 183 Q