3v4l.org

run code in 300+ PHP versions simultaneously
<?php ini_set('memory_limit', '512M'); function test_in_array($a) { $valid = array('a', 'b', 'c', 'd'); if (in_array($a, $valid)) { return true; } return false; } function test_array_flip_isset($a) { $valid = array('a', 'b', 'c', 'd'); $valid = array_flip($valid); if (isset($valid[$a])) { return true; } return false; } function test_isset($a) { $valid = array('a' => true, 'b' => true, 'c' => true, 'd' => true); if (isset($valid[$a])) { return true; } return false; } function test_empty($a) { $valid = array('a' => true, 'b' => true, 'c' => true, 'd' => true); if (empty($valid[$a])) { return false; } return true; } function test_not_empty($a) { $valid = array('a' => true, 'b' => true, 'c' => true, 'd' => true); if (!empty($valid[$a])) { return true; } return false; } function test_array_key_exists($a) { $valid = array('a' => true, 'b' => true, 'c' => true, 'd' => true); if (array_key_exists($a, $valid)) { return true; } return false; } function test_switch($a) { switch ($a) { case 'a': case 'b': case 'c': case 'd': return true; default: // do nothing break; } return false; } function test_equals($a) { if (($a == 'a') || ($a == 'b') || ($a == 'c') || ($a == 'd')) { return true; } return false; } function test_same($a) { if (($a === 'a') || ($a === 'b') || ($a === 'c') || ($a === 'd')) { return true; } return false; } $randomValues = array(); $exp = 4; for ($i = 0; $i < pow(10, $exp); $i++) { $randomValues[] = chr(mt_rand(65, 132)); } echo '<strong>10^' . $exp . ' random letters</strong><br/><br/>'; $functions = array( 'test_switch', 'test_in_array', 'test_array_flip_isset', 'test_isset', 'test_empty', 'test_not_empty', 'test_array_key_exists', 'test_equals', 'test_same', ); $baseline = null; foreach ($functions as $func) { $start = microtime(true); foreach ($randomValues as $value) { $func($value); } $end = microtime(true); if ($baseline === null) { echo $func . ': ' . number_format($end - $start, 2) . ' s<br/>'; } else { echo $func . ': ' . number_format($end - $start, 2) . ' s ' . number_format(($end - $start) / $baseline * 100, 2) . '% <br/>'; } if ($func == 'test_switch') { $baseline = $end - $start; } }
Output for 7.4.0
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 147.64% <br/>test_array_flip_isset: 0.00 s 238.59% <br/>test_isset: 0.00 s 96.16% <br/>test_empty: 0.00 s 96.18% <br/>test_not_empty: 0.00 s 114.21% <br/>test_array_key_exists: 0.00 s 114.45% <br/>test_equals: 0.00 s 164.52% <br/>test_same: 0.00 s 172.02% <br/>
Output for 7.3.12
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 153.59% <br/>test_array_flip_isset: 0.00 s 256.74% <br/>test_isset: 0.00 s 96.43% <br/>test_empty: 0.00 s 93.62% <br/>test_not_empty: 0.00 s 117.89% <br/>test_array_key_exists: 0.00 s 154.16% <br/>test_equals: 0.00 s 170.02% <br/>test_same: 0.00 s 180.08% <br/>
Output for 7.3.11
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 150.79% <br/>test_array_flip_isset: 0.00 s 245.70% <br/>test_isset: 0.00 s 94.74% <br/>test_empty: 0.00 s 95.14% <br/>test_not_empty: 0.00 s 129.36% <br/>test_array_key_exists: 0.00 s 140.02% <br/>test_equals: 0.00 s 169.55% <br/>test_same: 0.00 s 177.29% <br/>
Output for 7.3.10
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 152.05% <br/>test_array_flip_isset: 0.00 s 260.00% <br/>test_isset: 0.00 s 102.48% <br/>test_empty: 0.00 s 101.56% <br/>test_not_empty: 0.00 s 113.05% <br/>test_array_key_exists: 0.00 s 148.87% <br/>test_equals: 0.00 s 170.96% <br/>test_same: 0.00 s 186.39% <br/>
Output for 7.3.9
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 145.38% <br/>test_array_flip_isset: 0.00 s 261.83% <br/>test_isset: 0.00 s 74.89% <br/>test_empty: 0.00 s 57.77% <br/>test_not_empty: 0.00 s 65.66% <br/>test_array_key_exists: 0.00 s 96.25% <br/>test_equals: 0.00 s 106.14% <br/>test_same: 0.00 s 102.99% <br/>
Output for 7.3.8
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 101.33% <br/>test_array_flip_isset: 0.00 s 176.06% <br/>test_isset: 0.00 s 70.42% <br/>test_empty: 0.00 s 66.98% <br/>test_not_empty: 0.00 s 73.95% <br/>test_array_key_exists: 0.00 s 108.07% <br/>test_equals: 0.00 s 133.02% <br/>test_same: 0.00 s 133.10% <br/>
Output for 7.3.7
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 153.33% <br/>test_array_flip_isset: 0.00 s 267.84% <br/>test_isset: 0.00 s 64.57% <br/>test_empty: 0.00 s 62.63% <br/>test_not_empty: 0.00 s 73.31% <br/>test_array_key_exists: 0.00 s 100.15% <br/>test_equals: 0.00 s 113.64% <br/>test_same: 0.00 s 120.10% <br/>
Output for 7.3.6
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 154.59% <br/>test_array_flip_isset: 0.00 s 255.99% <br/>test_isset: 0.00 s 92.20% <br/>test_empty: 0.00 s 75.39% <br/>test_not_empty: 0.00 s 93.58% <br/>test_array_key_exists: 0.00 s 115.17% <br/>test_equals: 0.00 s 139.36% <br/>test_same: 0.00 s 149.55% <br/>
Output for 7.3.5
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 154.70% <br/>test_array_flip_isset: 0.00 s 265.00% <br/>test_isset: 0.00 s 100.83% <br/>test_empty: 0.00 s 99.46% <br/>test_not_empty: 0.00 s 114.85% <br/>test_array_key_exists: 0.00 s 154.42% <br/>test_equals: 0.00 s 178.10% <br/>test_same: 0.00 s 177.43% <br/>
Output for 7.3.4
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 146.74% <br/>test_array_flip_isset: 0.00 s 253.49% <br/>test_isset: 0.00 s 99.34% <br/>test_empty: 0.00 s 98.36% <br/>test_not_empty: 0.00 s 114.02% <br/>test_array_key_exists: 0.00 s 151.95% <br/>test_equals: 0.00 s 178.32% <br/>test_same: 0.00 s 193.45% <br/>
Output for 7.3.3
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 147.06% <br/>test_array_flip_isset: 0.00 s 254.51% <br/>test_isset: 0.00 s 99.05% <br/>test_empty: 0.00 s 95.47% <br/>test_not_empty: 0.00 s 109.64% <br/>test_array_key_exists: 0.00 s 158.18% <br/>test_equals: 0.00 s 174.42% <br/>test_same: 0.00 s 178.98% <br/>
Output for 7.3.2
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 148.05% <br/>test_array_flip_isset: 0.00 s 258.04% <br/>test_isset: 0.00 s 95.51% <br/>test_empty: 0.00 s 94.66% <br/>test_not_empty: 0.00 s 111.87% <br/>test_array_key_exists: 0.00 s 148.86% <br/>test_equals: 0.00 s 188.81% <br/>test_same: 0.00 s 193.88% <br/>
Output for 7.3.1
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 143.59% <br/>test_array_flip_isset: 0.00 s 233.56% <br/>test_isset: 0.00 s 95.83% <br/>test_empty: 0.00 s 91.40% <br/>test_not_empty: 0.00 s 107.09% <br/>test_array_key_exists: 0.00 s 136.22% <br/>test_equals: 0.00 s 161.27% <br/>test_same: 0.00 s 174.19% <br/>
Output for 7.3.0
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 142.89% <br/>test_array_flip_isset: 0.00 s 238.91% <br/>test_isset: 0.00 s 94.33% <br/>test_empty: 0.00 s 94.10% <br/>test_not_empty: 0.00 s 98.05% <br/>test_array_key_exists: 0.00 s 139.54% <br/>test_equals: 0.00 s 186.05% <br/>test_same: 0.00 s 189.28% <br/>
Output for 7.2.25
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 160.73% <br/>test_array_flip_isset: 0.00 s 231.83% <br/>test_isset: 0.00 s 91.86% <br/>test_empty: 0.00 s 61.78% <br/>test_not_empty: 0.00 s 72.23% <br/>test_array_key_exists: 0.00 s 104.28% <br/>test_equals: 0.00 s 170.62% <br/>test_same: 0.00 s 162.56% <br/>
Output for 7.2.24
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 173.17% <br/>test_array_flip_isset: 0.00 s 275.70% <br/>test_isset: 0.00 s 102.84% <br/>test_empty: 0.00 s 99.45% <br/>test_not_empty: 0.00 s 118.22% <br/>test_array_key_exists: 0.00 s 145.04% <br/>test_equals: 0.00 s 187.08% <br/>test_same: 0.00 s 188.86% <br/>
Output for 7.2.23
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 173.36% <br/>test_array_flip_isset: 0.00 s 246.04% <br/>test_isset: 0.00 s 102.67% <br/>test_empty: 0.00 s 105.99% <br/>test_not_empty: 0.00 s 90.17% <br/>test_array_key_exists: 0.00 s 122.43% <br/>test_equals: 0.00 s 139.20% <br/>test_same: 0.00 s 134.95% <br/>
Output for 7.2.22
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 176.65% <br/>test_array_flip_isset: 0.00 s 257.90% <br/>test_isset: 0.00 s 101.61% <br/>test_empty: 0.00 s 105.67% <br/>test_not_empty: 0.00 s 103.69% <br/>test_array_key_exists: 0.00 s 110.44% <br/>test_equals: 0.00 s 135.85% <br/>test_same: 0.00 s 143.23% <br/>
Output for 7.2.21
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 169.64% <br/>test_array_flip_isset: 0.00 s 234.08% <br/>test_isset: 0.00 s 99.46% <br/>test_empty: 0.00 s 99.12% <br/>test_not_empty: 0.00 s 108.02% <br/>test_array_key_exists: 0.00 s 135.56% <br/>test_equals: 0.00 s 177.22% <br/>test_same: 0.00 s 182.98% <br/>
Output for 7.2.20
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 166.44% <br/>test_array_flip_isset: 0.00 s 249.91% <br/>test_isset: 0.00 s 100.94% <br/>test_empty: 0.00 s 98.60% <br/>test_not_empty: 0.00 s 115.94% <br/>test_array_key_exists: 0.00 s 142.04% <br/>test_equals: 0.00 s 172.07% <br/>test_same: 0.00 s 183.35% <br/>
Output for 7.2.19
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 167.46% <br/>test_array_flip_isset: 0.00 s 249.96% <br/>test_isset: 0.00 s 100.85% <br/>test_empty: 0.00 s 103.35% <br/>test_not_empty: 0.00 s 115.97% <br/>test_array_key_exists: 0.00 s 141.72% <br/>test_equals: 0.00 s 178.55% <br/>test_same: 0.00 s 193.09% <br/>
Output for 7.2.18
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 167.96% <br/>test_array_flip_isset: 0.00 s 255.50% <br/>test_isset: 0.00 s 90.59% <br/>test_empty: 0.00 s 73.32% <br/>test_not_empty: 0.00 s 80.70% <br/>test_array_key_exists: 0.00 s 105.25% <br/>test_equals: 0.00 s 135.59% <br/>test_same: 0.00 s 133.67% <br/>
Output for 7.2.17
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 165.20% <br/>test_array_flip_isset: 0.00 s 244.31% <br/>test_isset: 0.00 s 100.34% <br/>test_empty: 0.00 s 96.94% <br/>test_not_empty: 0.00 s 107.42% <br/>test_array_key_exists: 0.00 s 139.61% <br/>test_equals: 0.00 s 173.32% <br/>test_same: 0.00 s 177.34% <br/>
Output for 7.1.33
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 125.52% <br/>test_array_flip_isset: 0.00 s 177.00% <br/>test_isset: 0.00 s 78.05% <br/>test_empty: 0.00 s 77.52% <br/>test_not_empty: 0.00 s 90.61% <br/>test_array_key_exists: 0.00 s 111.36% <br/>test_equals: 0.00 s 122.15% <br/>test_same: 0.00 s 130.45% <br/>
Output for 7.1.32
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 127.16% <br/>test_array_flip_isset: 0.00 s 175.91% <br/>test_isset: 0.00 s 78.30% <br/>test_empty: 0.00 s 78.04% <br/>test_not_empty: 0.00 s 93.82% <br/>test_array_key_exists: 0.00 s 113.30% <br/>test_equals: 0.00 s 123.89% <br/>test_same: 0.00 s 130.95% <br/>
Output for 7.1.31
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 110.57% <br/>test_array_flip_isset: 0.00 s 162.26% <br/>test_isset: 0.00 s 69.52% <br/>test_empty: 0.00 s 69.23% <br/>test_not_empty: 0.00 s 82.70% <br/>test_array_key_exists: 0.00 s 98.88% <br/>test_equals: 0.00 s 113.23% <br/>test_same: 0.00 s 122.19% <br/>
Output for 7.1.30
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 130.37% <br/>test_array_flip_isset: 0.00 s 186.33% <br/>test_isset: 0.00 s 89.42% <br/>test_empty: 0.00 s 80.46% <br/>test_not_empty: 0.00 s 92.58% <br/>test_array_key_exists: 0.00 s 112.87% <br/>test_equals: 0.00 s 128.88% <br/>test_same: 0.00 s 136.04% <br/>
Output for 7.1.29
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 132.33% <br/>test_array_flip_isset: 0.00 s 185.52% <br/>test_isset: 0.00 s 86.06% <br/>test_empty: 0.00 s 84.42% <br/>test_not_empty: 0.00 s 98.43% <br/>test_array_key_exists: 0.00 s 118.80% <br/>test_equals: 0.00 s 133.15% <br/>test_same: 0.00 s 143.72% <br/>
Output for 7.1.28
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 121.00% <br/>test_array_flip_isset: 0.00 s 174.24% <br/>test_isset: 0.00 s 80.09% <br/>test_empty: 0.00 s 79.10% <br/>test_not_empty: 0.00 s 92.73% <br/>test_array_key_exists: 0.00 s 113.78% <br/>test_equals: 0.00 s 124.25% <br/>test_same: 0.00 s 131.92% <br/>
Output for 7.1.27
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 88.27% <br/>test_array_flip_isset: 0.00 s 132.15% <br/>test_isset: 0.00 s 57.33% <br/>test_empty: 0.00 s 54.31% <br/>test_not_empty: 0.00 s 68.79% <br/>test_array_key_exists: 0.00 s 84.58% <br/>test_equals: 0.00 s 89.31% <br/>test_same: 0.00 s 93.53% <br/>
Output for 7.1.26
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 118.05% <br/>test_array_flip_isset: 0.00 s 172.24% <br/>test_isset: 0.00 s 76.67% <br/>test_empty: 0.00 s 74.70% <br/>test_not_empty: 0.00 s 92.65% <br/>test_array_key_exists: 0.00 s 109.58% <br/>test_equals: 0.00 s 119.17% <br/>test_same: 0.00 s 135.00% <br/>
Output for 7.1.7
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 128.38% <br/>test_array_flip_isset: 0.00 s 239.51% <br/>test_isset: 0.00 s 66.28% <br/>test_empty: 0.00 s 67.67% <br/>test_not_empty: 0.00 s 87.14% <br/>test_array_key_exists: 0.00 s 162.76% <br/>test_equals: 0.00 s 171.76% <br/>test_same: 0.00 s 108.18% <br/>
Output for 7.1.6
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 102.25% <br/>test_array_flip_isset: 0.00 s 189.17% <br/>test_isset: 0.00 s 70.94% <br/>test_empty: 0.00 s 71.49% <br/>test_not_empty: 0.00 s 77.99% <br/>test_array_key_exists: 0.00 s 92.07% <br/>test_equals: 0.00 s 101.30% <br/>test_same: 0.00 s 95.26% <br/>
Output for 7.1.5
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 103.60% <br/>test_array_flip_isset: 0.00 s 215.56% <br/>test_isset: 0.00 s 81.20% <br/>test_empty: 0.00 s 80.25% <br/>test_not_empty: 0.00 s 90.11% <br/>test_array_key_exists: 0.00 s 107.45% <br/>test_equals: 0.00 s 118.14% <br/>test_same: 0.00 s 113.24% <br/>
Output for 7.1.0
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 101.39% <br/>test_array_flip_isset: 0.00 s 193.02% <br/>test_isset: 0.00 s 68.41% <br/>test_empty: 0.00 s 70.11% <br/>test_not_empty: 0.00 s 82.52% <br/>test_array_key_exists: 0.00 s 98.98% <br/>test_equals: 0.00 s 120.08% <br/>test_same: 0.00 s 133.76% <br/>
Output for 7.0.20
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 174.38% <br/>test_array_flip_isset: 0.00 s 293.39% <br/>test_isset: 0.00 s 143.62% <br/>test_empty: 0.00 s 139.79% <br/>test_not_empty: 0.00 s 149.12% <br/>test_array_key_exists: 0.00 s 173.06% <br/>test_equals: 0.00 s 102.75% <br/>test_same: 0.00 s 102.03% <br/>
Output for 7.0.14
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 164.78% <br/>test_array_flip_isset: 0.00 s 243.81% <br/>test_isset: 0.00 s 125.78% <br/>test_empty: 0.00 s 126.93% <br/>test_not_empty: 0.00 s 139.70% <br/>test_array_key_exists: 0.00 s 177.79% <br/>test_equals: 0.00 s 120.31% <br/>test_same: 0.00 s 124.29% <br/>
Output for 7.0.6
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 145.00% <br/>test_array_flip_isset: 0.00 s 249.12% <br/>test_isset: 0.00 s 180.21% <br/>test_empty: 0.00 s 179.80% <br/>test_not_empty: 0.00 s 184.89% <br/>test_array_key_exists: 0.00 s 201.00% <br/>test_equals: 0.00 s 105.39% <br/>test_same: 0.00 s 107.33% <br/>
Output for 7.0.5
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 154.96% <br/>test_array_flip_isset: 0.00 s 265.41% <br/>test_isset: 0.00 s 192.21% <br/>test_empty: 0.00 s 197.37% <br/>test_not_empty: 0.00 s 202.90% <br/>test_array_key_exists: 0.00 s 224.69% <br/>test_equals: 0.00 s 119.74% <br/>test_same: 0.00 s 117.12% <br/>
Output for 7.0.4
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 171.30% <br/>test_array_flip_isset: 0.00 s 286.63% <br/>test_isset: 0.00 s 135.79% <br/>test_empty: 0.00 s 136.88% <br/>test_not_empty: 0.00 s 150.62% <br/>test_array_key_exists: 0.00 s 169.51% <br/>test_equals: 0.00 s 121.65% <br/>test_same: 0.00 s 118.27% <br/>
Output for 7.0.3
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 146.39% <br/>test_array_flip_isset: 0.01 s 465.97% <br/>test_isset: 0.00 s 249.46% <br/>test_empty: 0.00 s 192.12% <br/>test_not_empty: 0.00 s 195.56% <br/>test_array_key_exists: 0.00 s 228.69% <br/>test_equals: 0.00 s 117.07% <br/>test_same: 0.00 s 115.53% <br/>
Output for 7.0.2
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 148.82% <br/>test_array_flip_isset: 0.00 s 264.46% <br/>test_isset: 0.00 s 192.96% <br/>test_empty: 0.00 s 186.08% <br/>test_not_empty: 0.00 s 194.26% <br/>test_array_key_exists: 0.00 s 209.01% <br/>test_equals: 0.00 s 117.71% <br/>test_same: 0.00 s 113.21% <br/>
Output for 7.0.1
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 155.57% <br/>test_array_flip_isset: 0.00 s 273.18% <br/>test_isset: 0.00 s 199.00% <br/>test_empty: 0.00 s 201.71% <br/>test_not_empty: 0.00 s 207.97% <br/>test_array_key_exists: 0.00 s 229.07% <br/>test_equals: 0.00 s 118.07% <br/>test_same: 0.00 s 118.42% <br/>
Output for 7.0.0
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 150.42% <br/>test_array_flip_isset: 0.00 s 258.03% <br/>test_isset: 0.00 s 187.21% <br/>test_empty: 0.00 s 187.76% <br/>test_not_empty: 0.00 s 200.40% <br/>test_array_key_exists: 0.00 s 223.68% <br/>test_equals: 0.00 s 130.23% <br/>test_same: 0.00 s 120.24% <br/>
Output for 5.6.28
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 213.17% <br/>test_array_flip_isset: 0.01 s 275.07% <br/>test_isset: 0.01 s 136.62% <br/>test_empty: 0.01 s 134.48% <br/>test_not_empty: 0.01 s 134.99% <br/>test_array_key_exists: 0.01 s 165.16% <br/>test_equals: 0.00 s 89.93% <br/>test_same: 0.00 s 76.52% <br/>
Output for 5.6.21
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 208.49% <br/>test_array_flip_isset: 0.01 s 245.44% <br/>test_isset: 0.00 s 135.57% <br/>test_empty: 0.00 s 133.06% <br/>test_not_empty: 0.00 s 137.17% <br/>test_array_key_exists: 0.01 s 157.72% <br/>test_equals: 0.00 s 87.48% <br/>test_same: 0.00 s 73.88% <br/>
Output for 5.6.20
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 187.26% <br/>test_array_flip_isset: 0.01 s 223.06% <br/>test_isset: 0.00 s 134.92% <br/>test_empty: 0.00 s 136.93% <br/>test_not_empty: 0.00 s 131.24% <br/>test_array_key_exists: 0.01 s 165.60% <br/>test_equals: 0.00 s 92.74% <br/>test_same: 0.00 s 74.74% <br/>
Output for 5.6.19
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 228.47% <br/>test_array_flip_isset: 0.01 s 275.14% <br/>test_isset: 0.00 s 146.91% <br/>test_empty: 0.00 s 144.92% <br/>test_not_empty: 0.00 s 145.61% <br/>test_array_key_exists: 0.01 s 172.97% <br/>test_equals: 0.00 s 84.16% <br/>test_same: 0.00 s 66.77% <br/>
Output for 5.6.18
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 220.21% <br/>test_array_flip_isset: 0.01 s 274.23% <br/>test_isset: 0.00 s 153.03% <br/>test_empty: 0.00 s 149.79% <br/>test_not_empty: 0.00 s 153.73% <br/>test_array_key_exists: 0.00 s 193.95% <br/>test_equals: 0.00 s 93.95% <br/>test_same: 0.00 s 75.22% <br/>
Output for 5.6.17
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 207.06% <br/>test_array_flip_isset: 0.01 s 253.88% <br/>test_isset: 0.00 s 141.54% <br/>test_empty: 0.00 s 141.16% <br/>test_not_empty: 0.00 s 144.87% <br/>test_array_key_exists: 0.00 s 171.43% <br/>test_equals: 0.00 s 95.25% <br/>test_same: 0.00 s 81.80% <br/>
Output for 5.6.16
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 195.60% <br/>test_array_flip_isset: 0.01 s 237.13% <br/>test_isset: 0.00 s 135.23% <br/>test_empty: 0.00 s 131.95% <br/>test_not_empty: 0.00 s 134.48% <br/>test_array_key_exists: 0.01 s 148.06% <br/>test_equals: 0.00 s 80.73% <br/>test_same: 0.00 s 69.58% <br/>
Output for 5.6.15
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 206.66% <br/>test_array_flip_isset: 0.01 s 266.18% <br/>test_isset: 0.01 s 178.13% <br/>test_empty: 0.01 s 218.46% <br/>test_not_empty: 0.01 s 227.66% <br/>test_array_key_exists: 0.01 s 276.35% <br/>test_equals: 0.00 s 150.75% <br/>test_same: 0.00 s 120.78% <br/>
Output for 5.6.14
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 201.98% <br/>test_array_flip_isset: 0.01 s 236.94% <br/>test_isset: 0.01 s 130.90% <br/>test_empty: 0.01 s 127.54% <br/>test_not_empty: 0.01 s 129.00% <br/>test_array_key_exists: 0.01 s 149.79% <br/>test_equals: 0.00 s 82.39% <br/>test_same: 0.00 s 71.04% <br/>
Output for 5.6.13
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 220.43% <br/>test_array_flip_isset: 0.01 s 255.61% <br/>test_isset: 0.01 s 131.82% <br/>test_empty: 0.01 s 127.32% <br/>test_not_empty: 0.01 s 130.88% <br/>test_array_key_exists: 0.01 s 131.01% <br/>test_equals: 0.00 s 69.24% <br/>test_same: 0.00 s 60.47% <br/>
Output for 5.6.12
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 199.39% <br/>test_array_flip_isset: 0.01 s 241.93% <br/>test_isset: 0.00 s 152.13% <br/>test_empty: 0.00 s 138.44% <br/>test_not_empty: 0.00 s 142.28% <br/>test_array_key_exists: 0.00 s 169.63% <br/>test_equals: 0.00 s 94.92% <br/>test_same: 0.00 s 93.69% <br/>
Output for 5.6.11
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 203.44% <br/>test_array_flip_isset: 0.01 s 242.62% <br/>test_isset: 0.00 s 135.40% <br/>test_empty: 0.00 s 133.35% <br/>test_not_empty: 0.00 s 136.22% <br/>test_array_key_exists: 0.01 s 157.61% <br/>test_equals: 0.00 s 87.61% <br/>test_same: 0.00 s 73.04% <br/>
Output for 5.6.10
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 197.65% <br/>test_array_flip_isset: 0.01 s 235.36% <br/>test_isset: 0.01 s 146.80% <br/>test_empty: 0.01 s 140.81% <br/>test_not_empty: 0.01 s 129.83% <br/>test_array_key_exists: 0.01 s 137.59% <br/>test_equals: 0.00 s 65.65% <br/>test_same: 0.00 s 56.40% <br/>
Output for 5.6.9
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 195.84% <br/>test_array_flip_isset: 0.01 s 233.29% <br/>test_isset: 0.01 s 132.48% <br/>test_empty: 0.01 s 128.88% <br/>test_not_empty: 0.01 s 129.71% <br/>test_array_key_exists: 0.01 s 150.83% <br/>test_equals: 0.00 s 82.56% <br/>test_same: 0.00 s 69.86% <br/>
Output for 5.6.8
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 202.27% <br/>test_array_flip_isset: 0.01 s 248.06% <br/>test_isset: 0.01 s 144.83% <br/>test_empty: 0.01 s 141.93% <br/>test_not_empty: 0.01 s 143.98% <br/>test_array_key_exists: 0.01 s 168.65% <br/>test_equals: 0.00 s 96.26% <br/>test_same: 0.00 s 78.88% <br/>
Output for 5.6.7
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 200.15% <br/>test_array_flip_isset: 0.01 s 233.84% <br/>test_isset: 0.01 s 146.36% <br/>test_empty: 0.01 s 125.36% <br/>test_not_empty: 0.01 s 128.50% <br/>test_array_key_exists: 0.01 s 145.84% <br/>test_equals: 0.00 s 81.26% <br/>test_same: 0.00 s 68.20% <br/>
Output for 5.5.35
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 206.22% <br/>test_array_flip_isset: 0.01 s 246.02% <br/>test_isset: 0.01 s 134.22% <br/>test_empty: 0.01 s 130.92% <br/>test_not_empty: 0.01 s 131.96% <br/>test_array_key_exists: 0.01 s 155.69% <br/>test_equals: 0.00 s 83.67% <br/>test_same: 0.00 s 70.44% <br/>
Output for 5.5.34
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 229.03% <br/>test_array_flip_isset: 0.01 s 273.18% <br/>test_isset: 0.00 s 147.48% <br/>test_empty: 0.00 s 146.07% <br/>test_not_empty: 0.00 s 164.84% <br/>test_array_key_exists: 0.01 s 196.69% <br/>test_equals: 0.00 s 99.71% <br/>test_same: 0.00 s 85.52% <br/>
Output for 5.5.33
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 236.84% <br/>test_array_flip_isset: 0.01 s 296.04% <br/>test_isset: 0.00 s 157.23% <br/>test_empty: 0.00 s 157.63% <br/>test_not_empty: 0.00 s 162.51% <br/>test_array_key_exists: 0.00 s 200.03% <br/>test_equals: 0.00 s 96.40% <br/>test_same: 0.00 s 80.24% <br/>
Output for 5.5.32
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 232.20% <br/>test_array_flip_isset: 0.01 s 282.81% <br/>test_isset: 0.00 s 146.68% <br/>test_empty: 0.00 s 139.86% <br/>test_not_empty: 0.00 s 144.47% <br/>test_array_key_exists: 0.01 s 175.22% <br/>test_equals: 0.00 s 84.63% <br/>test_same: 0.00 s 69.87% <br/>
Output for 5.5.31
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 211.12% <br/>test_array_flip_isset: 0.01 s 262.46% <br/>test_isset: 0.00 s 143.54% <br/>test_empty: 0.00 s 143.36% <br/>test_not_empty: 0.00 s 153.59% <br/>test_array_key_exists: 0.01 s 178.77% <br/>test_equals: 0.00 s 98.62% <br/>test_same: 0.00 s 85.14% <br/>
Output for 5.5.30
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 229.30% <br/>test_array_flip_isset: 0.01 s 262.16% <br/>test_isset: 0.00 s 148.41% <br/>test_empty: 0.00 s 165.19% <br/>test_not_empty: 0.00 s 152.63% <br/>test_array_key_exists: 0.01 s 199.46% <br/>test_equals: 0.00 s 100.00% <br/>test_same: 0.00 s 84.88% <br/>
Output for 5.5.29
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 208.30% <br/>test_array_flip_isset: 0.01 s 245.02% <br/>test_isset: 0.01 s 131.70% <br/>test_empty: 0.01 s 130.60% <br/>test_not_empty: 0.01 s 130.72% <br/>test_array_key_exists: 0.01 s 153.43% <br/>test_equals: 0.00 s 82.14% <br/>test_same: 0.00 s 71.08% <br/>
Output for 5.5.28
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 214.08% <br/>test_array_flip_isset: 0.01 s 264.50% <br/>test_isset: 0.00 s 147.81% <br/>test_empty: 0.00 s 147.25% <br/>test_not_empty: 0.00 s 154.18% <br/>test_array_key_exists: 0.00 s 184.37% <br/>test_equals: 0.00 s 99.78% <br/>test_same: 0.00 s 87.35% <br/>
Output for 5.5.27
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 206.85% <br/>test_array_flip_isset: 0.01 s 229.30% <br/>test_isset: 0.00 s 108.42% <br/>test_empty: 0.00 s 107.35% <br/>test_not_empty: 0.00 s 109.88% <br/>test_array_key_exists: 0.01 s 134.25% <br/>test_equals: 0.00 s 73.04% <br/>test_same: 0.00 s 62.23% <br/>
Output for 5.5.26
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 206.15% <br/>test_array_flip_isset: 0.01 s 243.98% <br/>test_isset: 0.01 s 135.42% <br/>test_empty: 0.01 s 132.11% <br/>test_not_empty: 0.01 s 131.79% <br/>test_array_key_exists: 0.01 s 154.65% <br/>test_equals: 0.00 s 81.45% <br/>test_same: 0.00 s 71.08% <br/>
Output for 5.5.25
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 219.28% <br/>test_array_flip_isset: 0.01 s 267.57% <br/>test_isset: 0.00 s 137.36% <br/>test_empty: 0.00 s 144.65% <br/>test_not_empty: 0.00 s 145.41% <br/>test_array_key_exists: 0.01 s 161.55% <br/>test_equals: 0.00 s 104.45% <br/>test_same: 0.00 s 74.05% <br/>
Output for 5.5.24
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 202.98% <br/>test_array_flip_isset: 0.01 s 241.80% <br/>test_isset: 0.01 s 133.15% <br/>test_empty: 0.01 s 128.02% <br/>test_not_empty: 0.01 s 131.05% <br/>test_array_key_exists: 0.01 s 154.00% <br/>test_equals: 0.00 s 84.53% <br/>test_same: 0.00 s 71.07% <br/>
Output for 5.4.45
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 225.44% <br/>test_array_flip_isset: 0.01 s 273.15% <br/>test_isset: 0.00 s 141.32% <br/>test_empty: 0.00 s 140.51% <br/>test_not_empty: 0.00 s 139.40% <br/>test_array_key_exists: 0.01 s 174.57% <br/>test_equals: 0.00 s 82.31% <br/>test_same: 0.00 s 67.33% <br/>
Output for 5.4.44
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 233.85% <br/>test_array_flip_isset: 0.01 s 292.95% <br/>test_isset: 0.00 s 152.56% <br/>test_empty: 0.00 s 151.34% <br/>test_not_empty: 0.00 s 158.49% <br/>test_array_key_exists: 0.00 s 194.66% <br/>test_equals: 0.00 s 97.61% <br/>test_same: 0.00 s 79.99% <br/>
Output for 5.4.43
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 255.61% <br/>test_array_flip_isset: 0.01 s 309.88% <br/>test_isset: 0.00 s 156.54% <br/>test_empty: 0.01 s 172.72% <br/>test_not_empty: 0.01 s 167.82% <br/>test_array_key_exists: 0.01 s 192.57% <br/>test_equals: 0.00 s 95.91% <br/>test_same: 0.00 s 71.26% <br/>
Output for 5.4.42
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 227.06% <br/>test_array_flip_isset: 0.01 s 280.16% <br/>test_isset: 0.00 s 141.89% <br/>test_empty: 0.00 s 148.34% <br/>test_not_empty: 0.00 s 144.65% <br/>test_array_key_exists: 0.01 s 171.94% <br/>test_equals: 0.00 s 81.35% <br/>test_same: 0.00 s 68.30% <br/>
Output for 5.4.41
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 235.91% <br/>test_array_flip_isset: 0.01 s 304.38% <br/>test_isset: 0.00 s 150.40% <br/>test_empty: 0.00 s 148.07% <br/>test_not_empty: 0.00 s 149.74% <br/>test_array_key_exists: 0.01 s 181.47% <br/>test_equals: 0.00 s 87.60% <br/>test_same: 0.00 s 71.33% <br/>
Output for 5.4.40
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 225.23% <br/>test_array_flip_isset: 0.01 s 285.58% <br/>test_isset: 0.00 s 149.21% <br/>test_empty: 0.00 s 147.31% <br/>test_not_empty: 0.00 s 148.87% <br/>test_array_key_exists: 0.01 s 234.37% <br/>test_equals: 0.00 s 172.15% <br/>test_same: 0.00 s 138.35% <br/>
Output for 5.4.39
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 277.12% <br/>test_array_flip_isset: 0.01 s 318.99% <br/>test_isset: 0.01 s 184.37% <br/>test_empty: 0.00 s 155.86% <br/>test_not_empty: 0.01 s 204.29% <br/>test_array_key_exists: 0.01 s 209.62% <br/>test_equals: 0.00 s 107.53% <br/>test_same: 0.00 s 82.51% <br/>
Output for 5.4.38
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 242.86% <br/>test_array_flip_isset: 0.01 s 309.76% <br/>test_isset: 0.00 s 165.38% <br/>test_empty: 0.00 s 164.69% <br/>test_not_empty: 0.00 s 171.21% <br/>test_array_key_exists: 0.00 s 208.53% <br/>test_equals: 0.00 s 100.50% <br/>test_same: 0.00 s 81.38% <br/>
Output for 5.4.37
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 231.79% <br/>test_array_flip_isset: 0.01 s 287.29% <br/>test_isset: 0.00 s 149.35% <br/>test_empty: 0.00 s 146.80% <br/>test_not_empty: 0.00 s 151.01% <br/>test_array_key_exists: 0.01 s 179.16% <br/>test_equals: 0.00 s 85.34% <br/>test_same: 0.00 s 70.52% <br/>
Output for 5.4.36
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 245.84% <br/>test_array_flip_isset: 0.01 s 293.38% <br/>test_isset: 0.00 s 153.63% <br/>test_empty: 0.00 s 150.03% <br/>test_not_empty: 0.00 s 155.07% <br/>test_array_key_exists: 0.00 s 184.85% <br/>test_equals: 0.00 s 91.57% <br/>test_same: 0.00 s 75.91% <br/>
Output for 5.4.35
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 232.15% <br/>test_array_flip_isset: 0.01 s 299.11% <br/>test_isset: 0.00 s 154.20% <br/>test_empty: 0.00 s 155.09% <br/>test_not_empty: 0.00 s 160.43% <br/>test_array_key_exists: 0.00 s 194.98% <br/>test_equals: 0.00 s 97.47% <br/>test_same: 0.00 s 80.08% <br/>
Output for 5.4.34
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 239.94% <br/>test_array_flip_isset: 0.01 s 308.73% <br/>test_isset: 0.00 s 155.36% <br/>test_empty: 0.00 s 168.53% <br/>test_not_empty: 0.00 s 173.25% <br/>test_array_key_exists: 0.00 s 199.84% <br/>test_equals: 0.00 s 108.89% <br/>test_same: 0.00 s 83.31% <br/>
Output for 5.4.32
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 233.93% <br/>test_array_flip_isset: 0.01 s 299.46% <br/>test_isset: 0.00 s 156.42% <br/>test_empty: 0.00 s 157.36% <br/>test_not_empty: 0.00 s 165.95% <br/>test_array_key_exists: 0.01 s 201.15% <br/>test_equals: 0.00 s 94.16% <br/>test_same: 0.00 s 84.46% <br/>
Output for 5.4.31
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.00 s 233.08% <br/>test_array_flip_isset: 0.01 s 300.87% <br/>test_isset: 0.00 s 158.09% <br/>test_empty: 0.00 s 156.70% <br/>test_not_empty: 0.00 s 164.19% <br/>test_array_key_exists: 0.00 s 213.02% <br/>test_equals: 0.00 s 97.89% <br/>test_same: 0.00 s 82.14% <br/>
Output for 5.4.30
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 243.16% <br/>test_array_flip_isset: 0.01 s 297.50% <br/>test_isset: 0.00 s 148.03% <br/>test_empty: 0.00 s 149.18% <br/>test_not_empty: 0.00 s 149.09% <br/>test_array_key_exists: 0.01 s 183.27% <br/>test_equals: 0.00 s 85.29% <br/>test_same: 0.00 s 71.20% <br/>
Output for 5.4.29
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 211.07% <br/>test_array_flip_isset: 0.01 s 278.18% <br/>test_isset: 0.01 s 159.59% <br/>test_empty: 0.01 s 180.89% <br/>test_not_empty: 0.01 s 263.42% <br/>test_array_key_exists: 0.01 s 262.02% <br/>test_equals: 0.00 s 109.86% <br/>test_same: 0.00 s 87.28% <br/>
Output for 5.4.28
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 238.97% <br/>test_array_flip_isset: 0.01 s 327.91% <br/>test_isset: 0.00 s 164.72% <br/>test_empty: 0.00 s 154.25% <br/>test_not_empty: 0.01 s 202.98% <br/>test_array_key_exists: 0.01 s 200.57% <br/>test_equals: 0.00 s 108.65% <br/>test_same: 0.00 s 82.74% <br/>
Output for 5.4.27
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 186.11% <br/>test_array_flip_isset: 0.01 s 352.28% <br/>test_isset: 0.01 s 231.31% <br/>test_empty: 0.00 s 144.52% <br/>test_not_empty: 0.01 s 159.61% <br/>test_array_key_exists: 0.01 s 160.83% <br/>test_equals: 0.00 s 88.00% <br/>test_same: 0.00 s 70.25% <br/>
Output for 5.4.26
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 268.37% <br/>test_array_flip_isset: 0.01 s 308.64% <br/>test_isset: 0.00 s 164.22% <br/>test_empty: 0.00 s 167.16% <br/>test_not_empty: 0.01 s 203.55% <br/>test_array_key_exists: 0.01 s 279.23% <br/>test_equals: 0.00 s 145.97% <br/>test_same: 0.00 s 99.78% <br/>
Output for 5.4.25
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 236.65% <br/>test_array_flip_isset: 0.01 s 252.48% <br/>test_isset: 0.00 s 142.48% <br/>test_empty: 0.00 s 141.57% <br/>test_not_empty: 0.01 s 151.63% <br/>test_array_key_exists: 0.01 s 166.55% <br/>test_equals: 0.00 s 105.51% <br/>test_same: 0.00 s 85.11% <br/>
Output for 5.4.24
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 213.06% <br/>test_array_flip_isset: 0.01 s 282.26% <br/>test_isset: 0.00 s 147.38% <br/>test_empty: 0.00 s 148.01% <br/>test_not_empty: 0.00 s 150.11% <br/>test_array_key_exists: 0.01 s 183.07% <br/>test_equals: 0.00 s 113.43% <br/>test_same: 0.00 s 86.66% <br/>
Output for 5.4.23
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 483.77% <br/>test_array_flip_isset: 0.01 s 319.14% <br/>test_isset: 0.00 s 144.65% <br/>test_empty: 0.00 s 151.20% <br/>test_not_empty: 0.00 s 149.97% <br/>test_array_key_exists: 0.00 s 181.77% <br/>test_equals: 0.00 s 97.27% <br/>test_same: 0.00 s 82.01% <br/>
Output for 5.4.22
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 234.06% <br/>test_array_flip_isset: 0.01 s 265.38% <br/>test_isset: 0.00 s 142.71% <br/>test_empty: 0.00 s 137.39% <br/>test_not_empty: 0.00 s 139.90% <br/>test_array_key_exists: 0.01 s 177.22% <br/>test_equals: 0.01 s 177.47% <br/>test_same: 0.00 s 77.73% <br/>
Output for 5.4.21
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 229.98% <br/>test_array_flip_isset: 0.01 s 271.90% <br/>test_isset: 0.01 s 166.33% <br/>test_empty: 0.00 s 144.48% <br/>test_not_empty: 0.01 s 170.31% <br/>test_array_key_exists: 0.01 s 179.41% <br/>test_equals: 0.00 s 96.21% <br/>test_same: 0.00 s 110.20% <br/>
Output for 5.4.20
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 268.80% <br/>test_array_flip_isset: 0.01 s 365.47% <br/>test_isset: 0.00 s 174.84% <br/>test_empty: 0.00 s 170.77% <br/>test_not_empty: 0.01 s 210.77% <br/>test_array_key_exists: 0.01 s 241.80% <br/>test_equals: 0.00 s 115.68% <br/>test_same: 0.00 s 95.92% <br/>
Output for 5.4.19
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 232.21% <br/>test_array_flip_isset: 0.01 s 285.29% <br/>test_isset: 0.00 s 164.39% <br/>test_empty: 0.00 s 157.96% <br/>test_not_empty: 0.00 s 158.56% <br/>test_array_key_exists: 0.01 s 236.38% <br/>test_equals: 0.00 s 107.38% <br/>test_same: 0.00 s 87.46% <br/>
Output for 5.4.18
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 235.05% <br/>test_array_flip_isset: 0.01 s 310.82% <br/>test_isset: 0.00 s 172.26% <br/>test_empty: 0.00 s 170.81% <br/>test_not_empty: 0.00 s 174.31% <br/>test_array_key_exists: 0.01 s 211.68% <br/>test_equals: 0.00 s 120.84% <br/>test_same: 0.00 s 97.73% <br/>
Output for 5.4.17
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 230.79% <br/>test_array_flip_isset: 0.01 s 303.14% <br/>test_isset: 0.00 s 177.38% <br/>test_empty: 0.00 s 175.63% <br/>test_not_empty: 0.00 s 179.33% <br/>test_array_key_exists: 0.01 s 193.35% <br/>test_equals: 0.00 s 99.00% <br/>test_same: 0.00 s 82.92% <br/>
Output for 5.4.16
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 280.38% <br/>test_array_flip_isset: 0.01 s 350.72% <br/>test_isset: 0.00 s 187.99% <br/>test_empty: 0.00 s 181.48% <br/>test_not_empty: 0.00 s 175.56% <br/>test_array_key_exists: 0.01 s 220.53% <br/>test_equals: 0.00 s 111.87% <br/>test_same: 0.00 s 102.28% <br/>
Output for 5.4.15
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 237.78% <br/>test_array_flip_isset: 0.01 s 302.17% <br/>test_isset: 0.00 s 166.22% <br/>test_empty: 0.00 s 167.70% <br/>test_not_empty: 0.00 s 174.24% <br/>test_array_key_exists: 0.01 s 206.33% <br/>test_equals: 0.00 s 105.84% <br/>test_same: 0.00 s 88.34% <br/>
Output for 5.4.14
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 230.51% <br/>test_array_flip_isset: 0.01 s 308.03% <br/>test_isset: 0.00 s 163.93% <br/>test_empty: 0.00 s 164.46% <br/>test_not_empty: 0.00 s 168.06% <br/>test_array_key_exists: 0.01 s 202.74% <br/>test_equals: 0.00 s 111.16% <br/>test_same: 0.00 s 90.77% <br/>
Output for 5.4.13
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 228.69% <br/>test_array_flip_isset: 0.01 s 349.18% <br/>test_isset: 0.01 s 171.96% <br/>test_empty: 0.01 s 188.51% <br/>test_not_empty: 0.01 s 184.19% <br/>test_array_key_exists: 0.01 s 208.73% <br/>test_equals: 0.00 s 120.93% <br/>test_same: 0.00 s 102.91% <br/>
Output for 5.4.12
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.01 s 232.49% <br/>test_array_flip_isset: 0.02 s 286.47% <br/>test_isset: 0.01 s 157.63% <br/>test_empty: 0.01 s 155.29% <br/>test_not_empty: 0.01 s 148.39% <br/>test_array_key_exists: 0.01 s 196.30% <br/>test_equals: 0.01 s 98.36% <br/>test_same: 0.01 s 83.24% <br/>
Output for 5.4.11
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 291.32% <br/>test_array_flip_isset: 0.02 s 427.26% <br/>test_isset: 0.01 s 205.56% <br/>test_empty: 0.01 s 215.79% <br/>test_not_empty: 0.01 s 224.83% <br/>test_array_key_exists: 0.01 s 319.10% <br/>test_equals: 0.00 s 102.26% <br/>test_same: 0.00 s 63.35% <br/>
Output for 5.4.10
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 232.82% <br/>test_array_flip_isset: 0.01 s 291.42% <br/>test_isset: 0.00 s 150.02% <br/>test_empty: 0.00 s 144.81% <br/>test_not_empty: 0.00 s 148.41% <br/>test_array_key_exists: 0.01 s 170.32% <br/>test_equals: 0.00 s 94.20% <br/>test_same: 0.00 s 97.06% <br/>
Output for 5.4.9
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.01 s 233.48% <br/>test_array_flip_isset: 0.01 s 213.95% <br/>test_isset: 0.00 s 82.84% <br/>test_empty: 0.00 s 87.31% <br/>test_not_empty: 0.00 s 88.59% <br/>test_array_key_exists: 0.01 s 115.63% <br/>test_equals: 0.00 s 58.59% <br/>test_same: 0.00 s 52.76% <br/>
Output for 5.4.8
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 237.52% <br/>test_array_flip_isset: 0.01 s 372.47% <br/>test_isset: 0.01 s 229.93% <br/>test_empty: 0.00 s 154.76% <br/>test_not_empty: 0.00 s 158.14% <br/>test_array_key_exists: 0.01 s 187.06% <br/>test_equals: 0.00 s 112.81% <br/>test_same: 0.00 s 101.83% <br/>
Output for 5.4.7
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 277.49% <br/>test_array_flip_isset: 0.01 s 362.16% <br/>test_isset: 0.00 s 164.16% <br/>test_empty: 0.00 s 167.13% <br/>test_not_empty: 0.00 s 168.03% <br/>test_array_key_exists: 0.01 s 228.43% <br/>test_equals: 0.00 s 114.57% <br/>test_same: 0.00 s 91.04% <br/>
Output for 5.4.6
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.01 s 190.94% <br/>test_array_flip_isset: 0.01 s 188.48% <br/>test_isset: 0.00 s 89.21% <br/>test_empty: 0.00 s 88.76% <br/>test_not_empty: 0.00 s 95.06% <br/>test_array_key_exists: 0.01 s 119.30% <br/>test_equals: 0.00 s 58.65% <br/>test_same: 0.00 s 46.20% <br/>
Output for 5.4.5
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 240.95% <br/>test_array_flip_isset: 0.01 s 345.19% <br/>test_isset: 0.01 s 195.38% <br/>test_empty: 0.00 s 190.44% <br/>test_not_empty: 0.00 s 191.24% <br/>test_array_key_exists: 0.01 s 240.48% <br/>test_equals: 0.00 s 173.27% <br/>test_same: 0.00 s 172.69% <br/>
Output for 5.4.4
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 236.67% <br/>test_array_flip_isset: 0.01 s 315.86% <br/>test_isset: 0.01 s 151.19% <br/>test_empty: 0.00 s 138.77% <br/>test_not_empty: 0.00 s 145.88% <br/>test_array_key_exists: 0.01 s 161.59% <br/>test_equals: 0.00 s 108.16% <br/>test_same: 0.00 s 83.36% <br/>
Output for 5.4.3
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 238.80% <br/>test_array_flip_isset: 0.01 s 315.78% <br/>test_isset: 0.00 s 162.78% <br/>test_empty: 0.00 s 163.17% <br/>test_not_empty: 0.00 s 168.74% <br/>test_array_key_exists: 0.01 s 203.15% <br/>test_equals: 0.00 s 110.37% <br/>test_same: 0.00 s 90.06% <br/>
Output for 5.4.2
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 251.35% <br/>test_array_flip_isset: 0.01 s 285.77% <br/>test_isset: 0.01 s 167.58% <br/>test_empty: 0.01 s 171.78% <br/>test_not_empty: 0.00 s 156.94% <br/>test_array_key_exists: 0.01 s 186.23% <br/>test_equals: 0.00 s 114.08% <br/>test_same: 0.00 s 79.79% <br/>
Output for 5.4.1
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 234.99% <br/>test_array_flip_isset: 0.01 s 317.11% <br/>test_isset: 0.00 s 163.29% <br/>test_empty: 0.00 s 161.17% <br/>test_not_empty: 0.00 s 164.01% <br/>test_array_key_exists: 0.00 s 198.16% <br/>test_equals: 0.00 s 110.15% <br/>test_same: 0.00 s 92.16% <br/>
Output for 5.4.0
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 214.01% <br/>test_array_flip_isset: 0.01 s 276.38% <br/>test_isset: 0.00 s 155.94% <br/>test_empty: 0.00 s 147.37% <br/>test_not_empty: 0.00 s 159.21% <br/>test_array_key_exists: 0.01 s 183.28% <br/>test_equals: 0.00 s 101.75% <br/>test_same: 0.00 s 82.54% <br/>
Output for 5.3.29
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 253.54% <br/>test_array_flip_isset: 0.01 s 318.32% <br/>test_isset: 0.00 s 162.36% <br/>test_empty: 0.00 s 161.26% <br/>test_not_empty: 0.00 s 167.68% <br/>test_array_key_exists: 0.00 s 211.36% <br/>test_equals: 0.00 s 97.59% <br/>test_same: 0.00 s 83.10% <br/>
Output for 5.3.28
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 387.28% <br/>test_array_flip_isset: 0.01 s 321.10% <br/>test_isset: 0.01 s 207.74% <br/>test_empty: 0.00 s 135.02% <br/>test_not_empty: 0.00 s 137.02% <br/>test_array_key_exists: 0.01 s 182.00% <br/>test_equals: 0.00 s 91.86% <br/>test_same: 0.00 s 81.97% <br/>
Output for 5.3.27
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 242.15% <br/>test_array_flip_isset: 0.01 s 380.87% <br/>test_isset: 0.01 s 258.85% <br/>test_empty: 0.00 s 159.13% <br/>test_not_empty: 0.00 s 165.87% <br/>test_array_key_exists: 0.01 s 283.76% <br/>test_equals: 0.00 s 94.91% <br/>test_same: 0.00 s 80.79% <br/>
Output for 5.3.26
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 281.59% <br/>test_array_flip_isset: 0.01 s 285.74% <br/>test_isset: 0.00 s 145.43% <br/>test_empty: 0.00 s 150.56% <br/>test_not_empty: 0.00 s 146.62% <br/>test_array_key_exists: 0.01 s 187.05% <br/>test_equals: 0.00 s 95.88% <br/>test_same: 0.00 s 78.55% <br/>
Output for 5.3.25
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 233.73% <br/>test_array_flip_isset: 0.01 s 294.56% <br/>test_isset: 0.00 s 158.26% <br/>test_empty: 0.00 s 154.34% <br/>test_not_empty: 0.00 s 157.99% <br/>test_array_key_exists: 0.01 s 321.33% <br/>test_equals: 0.01 s 178.37% <br/>test_same: 0.00 s 146.70% <br/>
Output for 5.3.24
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 253.43% <br/>test_array_flip_isset: 0.01 s 311.55% <br/>test_isset: 0.00 s 159.65% <br/>test_empty: 0.00 s 159.52% <br/>test_not_empty: 0.01 s 164.75% <br/>test_array_key_exists: 0.01 s 196.78% <br/>test_equals: 0.00 s 102.25% <br/>test_same: 0.00 s 83.89% <br/>
Output for 5.3.23
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 230.88% <br/>test_array_flip_isset: 0.01 s 302.34% <br/>test_isset: 0.00 s 166.14% <br/>test_empty: 0.00 s 165.88% <br/>test_not_empty: 0.01 s 177.49% <br/>test_array_key_exists: 0.01 s 220.99% <br/>test_equals: 0.00 s 120.38% <br/>test_same: 0.00 s 115.09% <br/>
Output for 5.3.22
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.02 s 252.47% <br/>test_array_flip_isset: 0.02 s 316.54% <br/>test_isset: 0.01 s 157.43% <br/>test_empty: 0.01 s 151.74% <br/>test_not_empty: 0.01 s 164.38% <br/>test_array_key_exists: 0.01 s 214.90% <br/>test_equals: 0.01 s 104.56% <br/>test_same: 0.00 s 37.15% <br/>
Output for 5.3.21
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 258.47% <br/>test_array_flip_isset: 0.01 s 194.04% <br/>test_isset: 0.01 s 109.11% <br/>test_empty: 0.01 s 146.68% <br/>test_not_empty: 0.01 s 116.31% <br/>test_array_key_exists: 0.01 s 128.64% <br/>test_equals: 0.00 s 64.70% <br/>test_same: 0.00 s 50.67% <br/>
Output for 5.3.20
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 289.21% <br/>test_array_flip_isset: 0.01 s 340.64% <br/>test_isset: 0.01 s 203.57% <br/>test_empty: 0.01 s 197.12% <br/>test_not_empty: 0.01 s 198.83% <br/>test_array_key_exists: 0.01 s 232.99% <br/>test_equals: 0.00 s 108.56% <br/>test_same: 0.00 s 97.16% <br/>
Output for 5.3.19
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 259.13% <br/>test_array_flip_isset: 0.01 s 335.86% <br/>test_isset: 0.00 s 177.26% <br/>test_empty: 0.01 s 178.34% <br/>test_not_empty: 0.00 s 177.73% <br/>test_array_key_exists: 0.01 s 218.64% <br/>test_equals: 0.00 s 112.58% <br/>test_same: 0.00 s 90.95% <br/>
Output for 5.3.18
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.01 s 122.60% <br/>test_array_flip_isset: 0.01 s 157.44% <br/>test_isset: 0.01 s 80.83% <br/>test_empty: 0.01 s 82.63% <br/>test_not_empty: 0.01 s 176.94% <br/>test_array_key_exists: 0.02 s 209.60% <br/>test_equals: 0.01 s 71.51% <br/>test_same: 0.00 s 56.67% <br/>
Output for 5.3.17
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.01 s 227.50% <br/>test_array_flip_isset: 0.02 s 288.55% <br/>test_isset: 0.01 s 147.10% <br/>test_empty: 0.01 s 144.14% <br/>test_not_empty: 0.01 s 149.77% <br/>test_array_key_exists: 0.01 s 194.23% <br/>test_equals: 0.01 s 103.83% <br/>test_same: 0.00 s 81.66% <br/>
Output for 5.3.16
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 287.79% <br/>test_array_flip_isset: 0.02 s 553.13% <br/>test_isset: 0.01 s 319.28% <br/>test_empty: 0.01 s 323.68% <br/>test_not_empty: 0.01 s 284.97% <br/>test_array_key_exists: 0.01 s 231.97% <br/>test_equals: 0.00 s 130.13% <br/>test_same: 0.00 s 160.74% <br/>
Output for 5.3.15
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 287.84% <br/>test_array_flip_isset: 0.01 s 398.80% <br/>test_isset: 0.01 s 224.89% <br/>test_empty: 0.01 s 197.86% <br/>test_not_empty: 0.01 s 238.79% <br/>test_array_key_exists: 0.01 s 261.57% <br/>test_equals: 0.00 s 107.37% <br/>test_same: 0.00 s 87.24% <br/>
Output for 5.3.14
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.01 s 247.30% <br/>test_array_flip_isset: 0.02 s 297.57% <br/>test_isset: 0.01 s 154.85% <br/>test_empty: 0.01 s 163.50% <br/>test_not_empty: 0.01 s 166.80% <br/>test_array_key_exists: 0.01 s 219.02% <br/>test_equals: 0.01 s 98.18% <br/>test_same: 0.00 s 56.23% <br/>
Output for 5.3.13
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 285.78% <br/>test_array_flip_isset: 0.01 s 311.26% <br/>test_isset: 0.00 s 160.20% <br/>test_empty: 0.00 s 158.10% <br/>test_not_empty: 0.00 s 159.13% <br/>test_array_key_exists: 0.01 s 214.82% <br/>test_equals: 0.00 s 103.20% <br/>test_same: 0.00 s 93.64% <br/>
Output for 5.3.12
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 266.87% <br/>test_array_flip_isset: 0.01 s 329.42% <br/>test_isset: 0.00 s 172.25% <br/>test_empty: 0.00 s 177.87% <br/>test_not_empty: 0.01 s 220.13% <br/>test_array_key_exists: 0.01 s 433.23% <br/>test_equals: 0.01 s 192.77% <br/>test_same: 0.00 s 169.34% <br/>
Output for 5.3.11
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.01 s 245.87% <br/>test_array_flip_isset: 0.02 s 308.47% <br/>test_isset: 0.01 s 157.37% <br/>test_empty: 0.01 s 156.28% <br/>test_not_empty: 0.01 s 159.64% <br/>test_array_key_exists: 0.01 s 205.48% <br/>test_equals: 0.01 s 104.66% <br/>test_same: 0.00 s 87.36% <br/>
Output for 5.3.10
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 271.71% <br/>test_array_flip_isset: 0.02 s 359.83% <br/>test_isset: 0.01 s 181.13% <br/>test_empty: 0.01 s 181.15% <br/>test_not_empty: 0.01 s 124.87% <br/>test_array_key_exists: 0.01 s 139.69% <br/>test_equals: 0.00 s 69.06% <br/>test_same: 0.00 s 55.65% <br/>
Output for 5.3.9
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 293.16% <br/>test_array_flip_isset: 0.02 s 625.49% <br/>test_isset: 0.01 s 310.78% <br/>test_empty: 0.01 s 308.99% <br/>test_not_empty: 0.01 s 300.05% <br/>test_array_key_exists: 0.01 s 392.88% <br/>test_equals: 0.00 s 151.57% <br/>test_same: 0.00 s 92.21% <br/>
Output for 5.3.8
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.01 s 280.13% <br/>test_array_flip_isset: 0.02 s 309.82% <br/>test_isset: 0.01 s 162.30% <br/>test_empty: 0.01 s 171.38% <br/>test_not_empty: 0.01 s 182.60% <br/>test_array_key_exists: 0.01 s 204.62% <br/>test_equals: 0.01 s 104.64% <br/>test_same: 0.00 s 86.55% <br/>
Output for 5.3.7
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 301.52% <br/>test_array_flip_isset: 0.02 s 364.37% <br/>test_isset: 0.01 s 192.29% <br/>test_empty: 0.01 s 192.98% <br/>test_not_empty: 0.01 s 200.24% <br/>test_array_key_exists: 0.01 s 180.21% <br/>test_equals: 0.00 s 75.66% <br/>test_same: 0.00 s 61.40% <br/>
Output for 5.3.6
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 272.22% <br/>test_array_flip_isset: 0.01 s 319.29% <br/>test_isset: 0.00 s 166.20% <br/>test_empty: 0.01 s 224.06% <br/>test_not_empty: 0.00 s 171.76% <br/>test_array_key_exists: 0.01 s 210.52% <br/>test_equals: 0.00 s 120.10% <br/>test_same: 0.00 s 93.20% <br/>
Output for 5.3.5
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.01 s 261.13% <br/>test_array_flip_isset: 0.02 s 315.28% <br/>test_isset: 0.01 s 164.23% <br/>test_empty: 0.01 s 165.19% <br/>test_not_empty: 0.01 s 169.52% <br/>test_array_key_exists: 0.01 s 210.58% <br/>test_equals: 0.01 s 100.72% <br/>test_same: 0.00 s 84.23% <br/>
Output for 5.3.4
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.01 s 260.63% <br/>test_array_flip_isset: 0.02 s 316.17% <br/>test_isset: 0.01 s 167.38% <br/>test_empty: 0.01 s 168.47% <br/>test_not_empty: 0.01 s 171.11% <br/>test_array_key_exists: 0.01 s 202.87% <br/>test_equals: 0.01 s 107.22% <br/>test_same: 0.00 s 85.99% <br/>
Output for 5.3.3
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.01 s 248.58% <br/>test_array_flip_isset: 0.02 s 290.59% <br/>test_isset: 0.01 s 107.85% <br/>test_empty: 0.01 s 109.98% <br/>test_not_empty: 0.01 s 162.36% <br/>test_array_key_exists: 0.01 s 218.54% <br/>test_equals: 0.01 s 92.82% <br/>test_same: 0.00 s 81.24% <br/>
Output for 5.3.2
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 231.36% <br/>test_array_flip_isset: 0.01 s 310.21% <br/>test_isset: 0.00 s 162.45% <br/>test_empty: 0.00 s 156.56% <br/>test_not_empty: 0.00 s 166.09% <br/>test_array_key_exists: 0.01 s 234.90% <br/>test_equals: 0.00 s 111.26% <br/>test_same: 0.00 s 84.46% <br/>
Output for 5.3.1
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 243.95% <br/>test_array_flip_isset: 0.01 s 297.87% <br/>test_isset: 0.00 s 162.92% <br/>test_empty: 0.01 s 168.67% <br/>test_not_empty: 0.01 s 171.27% <br/>test_array_key_exists: 0.01 s 210.16% <br/>test_equals: 0.00 s 107.19% <br/>test_same: 0.00 s 91.72% <br/>
Output for 5.3.0
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 281.44% <br/>test_array_flip_isset: 0.01 s 431.37% <br/>test_isset: 0.01 s 214.36% <br/>test_empty: 0.00 s 180.82% <br/>test_not_empty: 0.00 s 176.84% <br/>test_array_key_exists: 0.01 s 240.27% <br/>test_equals: 0.00 s 127.74% <br/>test_same: 0.00 s 121.36% <br/>
Output for 5.2.17
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 178.42% <br/>test_array_flip_isset: 0.01 s 217.35% <br/>test_isset: 0.01 s 115.08% <br/>test_empty: 0.01 s 114.33% <br/>test_not_empty: 0.01 s 142.83% <br/>test_array_key_exists: 0.01 s 150.51% <br/>test_equals: 0.00 s 90.42% <br/>test_same: 0.00 s 72.11% <br/>
Output for 5.2.16
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 209.54% <br/>test_array_flip_isset: 0.01 s 238.29% <br/>test_isset: 0.01 s 150.84% <br/>test_empty: 0.01 s 145.37% <br/>test_not_empty: 0.01 s 155.73% <br/>test_array_key_exists: 0.01 s 178.04% <br/>test_equals: 0.00 s 122.40% <br/>test_same: 0.00 s 98.73% <br/>
Output for 5.2.15
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 219.29% <br/>test_array_flip_isset: 0.02 s 448.74% <br/>test_isset: 0.01 s 254.49% <br/>test_empty: 0.01 s 250.69% <br/>test_not_empty: 0.01 s 259.95% <br/>test_array_key_exists: 0.01 s 291.66% <br/>test_equals: 0.01 s 210.64% <br/>test_same: 0.01 s 167.41% <br/>
Output for 5.2.14
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.02 s 196.57% <br/>test_array_flip_isset: 0.02 s 226.62% <br/>test_isset: 0.01 s 144.66% <br/>test_empty: 0.01 s 130.47% <br/>test_not_empty: 0.01 s 130.49% <br/>test_array_key_exists: 0.01 s 155.52% <br/>test_equals: 0.01 s 107.39% <br/>test_same: 0.01 s 75.80% <br/>
Output for 5.2.13
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.02 s 197.86% <br/>test_array_flip_isset: 0.02 s 226.13% <br/>test_isset: 0.01 s 118.63% <br/>test_empty: 0.01 s 119.39% <br/>test_not_empty: 0.01 s 123.83% <br/>test_array_key_exists: 0.01 s 141.48% <br/>test_equals: 0.01 s 100.76% <br/>test_same: 0.01 s 78.37% <br/>
Output for 5.2.12
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.02 s 224.83% <br/>test_array_flip_isset: 0.02 s 228.81% <br/>test_isset: 0.01 s 134.11% <br/>test_empty: 0.01 s 113.56% <br/>test_not_empty: 0.01 s 142.67% <br/>test_array_key_exists: 0.01 s 139.27% <br/>test_equals: 0.01 s 87.57% <br/>test_same: 0.01 s 75.85% <br/>
Output for 5.2.11
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.02 s 227.70% <br/>test_array_flip_isset: 0.01 s 145.15% <br/>test_isset: 0.01 s 76.98% <br/>test_empty: 0.01 s 78.11% <br/>test_not_empty: 0.01 s 78.18% <br/>test_array_key_exists: 0.01 s 165.67% <br/>test_equals: 0.01 s 119.42% <br/>test_same: 0.01 s 89.30% <br/>
Output for 5.2.10
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 275.37% <br/>test_array_flip_isset: 0.01 s 269.32% <br/>test_isset: 0.01 s 174.74% <br/>test_empty: 0.01 s 158.25% <br/>test_not_empty: 0.01 s 166.24% <br/>test_array_key_exists: 0.01 s 228.70% <br/>test_equals: 0.01 s 173.65% <br/>test_same: 0.00 s 94.96% <br/>
Output for 5.2.9
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 234.82% <br/>test_array_flip_isset: 0.01 s 316.87% <br/>test_isset: 0.01 s 191.56% <br/>test_empty: 0.01 s 175.77% <br/>test_not_empty: 0.01 s 169.28% <br/>test_array_key_exists: 0.01 s 281.09% <br/>test_equals: 0.01 s 203.74% <br/>test_same: 0.01 s 159.19% <br/>
Output for 5.2.8
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.01 s 208.12% <br/>test_array_flip_isset: 0.02 s 245.43% <br/>test_isset: 0.01 s 148.96% <br/>test_empty: 0.01 s 123.96% <br/>test_not_empty: 0.01 s 147.14% <br/>test_array_key_exists: 0.01 s 139.97% <br/>test_equals: 0.00 s 78.14% <br/>test_same: 0.01 s 91.32% <br/>
Output for 5.2.7
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.01 s 216.31% <br/>test_array_flip_isset: 0.02 s 259.86% <br/>test_isset: 0.01 s 143.79% <br/>test_empty: 0.01 s 138.11% <br/>test_not_empty: 0.01 s 144.53% <br/>test_array_key_exists: 0.01 s 168.90% <br/>test_equals: 0.01 s 106.75% <br/>test_same: 0.01 s 93.19% <br/>
Output for 5.2.6
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 199.53% <br/>test_array_flip_isset: 0.01 s 238.79% <br/>test_isset: 0.01 s 145.35% <br/>test_empty: 0.01 s 146.22% <br/>test_not_empty: 0.01 s 168.67% <br/>test_array_key_exists: 0.01 s 291.45% <br/>test_equals: 0.00 s 108.20% <br/>test_same: 0.00 s 89.36% <br/>
Output for 5.2.5
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 222.32% <br/>test_array_flip_isset: 0.01 s 278.97% <br/>test_isset: 0.01 s 168.99% <br/>test_empty: 0.01 s 170.90% <br/>test_not_empty: 0.01 s 243.59% <br/>test_array_key_exists: 0.01 s 239.61% <br/>test_equals: 0.01 s 136.82% <br/>test_same: 0.00 s 89.75% <br/>
Output for 5.2.4
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 222.72% <br/>test_array_flip_isset: 0.01 s 272.11% <br/>test_isset: 0.01 s 153.67% <br/>test_empty: 0.01 s 149.92% <br/>test_not_empty: 0.01 s 157.20% <br/>test_array_key_exists: 0.01 s 191.72% <br/>test_equals: 0.00 s 117.96% <br/>test_same: 0.00 s 118.38% <br/>
Output for 5.2.3
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.01 s 206.69% <br/>test_array_flip_isset: 0.01 s 190.16% <br/>test_isset: 0.01 s 104.69% <br/>test_empty: 0.01 s 134.74% <br/>test_not_empty: 0.01 s 121.41% <br/>test_array_key_exists: 0.01 s 123.71% <br/>test_equals: 0.00 s 77.10% <br/>test_same: 0.00 s 63.14% <br/>
Output for 5.2.2
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 211.48% <br/>test_array_flip_isset: 0.01 s 253.57% <br/>test_isset: 0.01 s 171.97% <br/>test_empty: 0.01 s 136.75% <br/>test_not_empty: 0.01 s 141.96% <br/>test_array_key_exists: 0.01 s 173.21% <br/>test_equals: 0.00 s 104.87% <br/>test_same: 0.00 s 84.19% <br/>
Output for 5.2.1
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 230.08% <br/>test_array_flip_isset: 0.01 s 271.99% <br/>test_isset: 0.01 s 163.43% <br/>test_empty: 0.01 s 148.10% <br/>test_not_empty: 0.01 s 169.60% <br/>test_array_key_exists: 0.01 s 207.79% <br/>test_equals: 0.01 s 175.45% <br/>test_same: 0.00 s 94.14% <br/>
Output for 5.2.0
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.00 s<br/>test_in_array: 0.01 s 199.98% <br/>test_array_flip_isset: 0.01 s 202.68% <br/>test_isset: 0.01 s 155.90% <br/>test_empty: 0.01 s 142.36% <br/>test_not_empty: 0.01 s 149.86% <br/>test_array_key_exists: 0.02 s 325.89% <br/>test_equals: 0.01 s 109.26% <br/>test_same: 0.01 s 114.68% <br/>
Output for 5.1.6
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.01 s 200.35% <br/>test_array_flip_isset: 0.01 s 189.31% <br/>test_isset: 0.01 s 175.57% <br/>test_empty: 0.01 s 184.41% <br/>test_not_empty: 0.01 s 146.31% <br/>test_array_key_exists: 0.01 s 146.08% <br/>test_equals: 0.01 s 113.57% <br/>test_same: 0.00 s 68.61% <br/>
Output for 5.1.5
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.03 s 375.17% <br/>test_array_flip_isset: 0.02 s 186.48% <br/>test_isset: 0.01 s 125.54% <br/>test_empty: 0.01 s 124.27% <br/>test_not_empty: 0.01 s 132.65% <br/>test_array_key_exists: 0.01 s 156.71% <br/>test_equals: 0.01 s 122.26% <br/>test_same: 0.01 s 75.89% <br/>
Output for 5.1.4
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.02 s 188.60% <br/>test_array_flip_isset: 0.02 s 214.87% <br/>test_isset: 0.01 s 126.37% <br/>test_empty: 0.01 s 125.93% <br/>test_not_empty: 0.01 s 132.12% <br/>test_array_key_exists: 0.01 s 151.14% <br/>test_equals: 0.01 s 104.87% <br/>test_same: 0.01 s 77.77% <br/>
Output for 5.1.3
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.01 s 182.26% <br/>test_array_flip_isset: 0.02 s 200.14% <br/>test_isset: 0.01 s 119.75% <br/>test_empty: 0.01 s 121.56% <br/>test_not_empty: 0.01 s 129.79% <br/>test_array_key_exists: 0.01 s 172.68% <br/>test_equals: 0.01 s 104.99% <br/>test_same: 0.01 s 75.53% <br/>
Output for 5.1.2
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.02 s 165.66% <br/>test_array_flip_isset: 0.02 s 175.99% <br/>test_isset: 0.01 s 139.08% <br/>test_empty: 0.01 s 141.27% <br/>test_not_empty: 0.01 s 145.23% <br/>test_array_key_exists: 0.02 s 162.00% <br/>test_equals: 0.01 s 100.58% <br/>test_same: 0.01 s 72.28% <br/>
Output for 5.1.1
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.01 s 168.08% <br/>test_array_flip_isset: 0.01 s 180.64% <br/>test_isset: 0.01 s 150.11% <br/>test_empty: 0.01 s 109.36% <br/>test_not_empty: 0.01 s 114.03% <br/>test_array_key_exists: 0.01 s 133.87% <br/>test_equals: 0.01 s 109.29% <br/>test_same: 0.01 s 96.72% <br/>
Output for 5.1.0
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.02 s 203.01% <br/>test_array_flip_isset: 0.02 s 214.09% <br/>test_isset: 0.01 s 135.98% <br/>test_empty: 0.01 s 149.52% <br/>test_not_empty: 0.01 s 162.17% <br/>test_array_key_exists: 0.02 s 201.04% <br/>test_equals: 0.01 s 125.97% <br/>test_same: 0.01 s 86.40% <br/>
Output for 5.0.5
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.02 s<br/>test_in_array: 0.02 s 152.18% <br/>test_array_flip_isset: 0.03 s 186.34% <br/>test_isset: 0.02 s 109.14% <br/>test_empty: 0.02 s 115.14% <br/>test_not_empty: 0.02 s 104.82% <br/>test_array_key_exists: 0.02 s 118.64% <br/>test_equals: 0.02 s 103.74% <br/>test_same: 0.01 s 81.27% <br/>
Output for 5.0.4
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.02 s<br/>test_in_array: 0.02 s 150.41% <br/>test_array_flip_isset: 0.03 s 164.68% <br/>test_isset: 0.02 s 125.23% <br/>test_empty: 0.02 s 128.27% <br/>test_not_empty: 0.02 s 128.17% <br/>test_array_key_exists: 0.02 s 140.56% <br/>test_equals: 0.01 s 63.91% <br/>test_same: 0.01 s 58.57% <br/>
Output for 5.0.3
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.01 s 100.71% <br/>test_array_flip_isset: 0.02 s 114.13% <br/>test_isset: 0.01 s 90.44% <br/>test_empty: 0.01 s 89.74% <br/>test_not_empty: 0.01 s 97.55% <br/>test_array_key_exists: 0.01 s 101.92% <br/>test_equals: 0.01 s 77.29% <br/>test_same: 0.01 s 59.94% <br/>
Output for 5.0.2
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.01 s 145.17% <br/>test_array_flip_isset: 0.02 s 162.10% <br/>test_isset: 0.01 s 114.09% <br/>test_empty: 0.01 s 116.92% <br/>test_not_empty: 0.01 s 123.66% <br/>test_array_key_exists: 0.01 s 141.85% <br/>test_equals: 0.01 s 96.69% <br/>test_same: 0.01 s 85.10% <br/>
Output for 5.0.1
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.01 s 141.83% <br/>test_array_flip_isset: 0.02 s 164.04% <br/>test_isset: 0.01 s 123.82% <br/>test_empty: 0.01 s 124.19% <br/>test_not_empty: 0.01 s 131.57% <br/>test_array_key_exists: 0.01 s 148.64% <br/>test_equals: 0.01 s 102.73% <br/>test_same: 0.01 s 86.24% <br/>
Output for 5.0.0
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.02 s 136.33% <br/>test_array_flip_isset: 0.02 s 132.18% <br/>test_isset: 0.01 s 102.23% <br/>test_empty: 0.01 s 99.58% <br/>test_not_empty: 0.01 s 100.74% <br/>test_array_key_exists: 0.01 s 109.97% <br/>test_equals: 0.01 s 88.90% <br/>test_same: 0.01 s 75.10% <br/>
Output for 4.4.9
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: -0.99 s -10,774.98% <br/>test_array_flip_isset: 0.02 s 181.96% <br/>test_isset: 0.01 s 123.65% <br/>test_empty: 0.01 s 125.86% <br/>test_not_empty: 0.01 s 131.48% <br/>test_array_key_exists: 0.01 s 155.10% <br/>test_equals: 0.01 s 101.97% <br/>test_same: 0.01 s 86.44% <br/>
Output for 4.4.8
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.02 s 190.06% <br/>test_array_flip_isset: 0.01 s 152.51% <br/>test_isset: 0.01 s 123.80% <br/>test_empty: 0.01 s 112.26% <br/>test_not_empty: 0.01 s 117.26% <br/>test_array_key_exists: 0.01 s 136.04% <br/>test_equals: 0.01 s 110.78% <br/>test_same: 0.01 s 105.05% <br/>
Output for 4.4.7
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.01 s 147.72% <br/>test_array_flip_isset: 0.02 s 169.63% <br/>test_isset: 0.01 s 125.18% <br/>test_empty: 0.01 s 126.08% <br/>test_not_empty: 0.01 s 137.25% <br/>test_array_key_exists: 0.01 s 165.71% <br/>test_equals: 0.01 s 115.81% <br/>test_same: 0.01 s 102.19% <br/>
Output for 4.4.6
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.03 s<br/>test_in_array: 0.02 s 80.73% <br/>test_array_flip_isset: 0.02 s 64.05% <br/>test_isset: 0.01 s 48.95% <br/>test_empty: 0.01 s 50.59% <br/>test_not_empty: 0.01 s 43.22% <br/>test_array_key_exists: 0.01 s 47.50% <br/>test_equals: 0.01 s 36.86% <br/>test_same: 0.01 s 34.33% <br/>
Output for 4.4.5
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.02 s 155.29% <br/>test_array_flip_isset: 0.02 s 176.88% <br/>test_isset: 0.02 s 131.20% <br/>test_empty: 0.02 s 132.11% <br/>test_not_empty: 0.02 s 135.27% <br/>test_array_key_exists: 0.02 s 147.15% <br/>test_equals: 0.01 s 107.51% <br/>test_same: 0.01 s 86.40% <br/>
Output for 4.4.4
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.02 s 161.66% <br/>test_array_flip_isset: 0.03 s 176.05% <br/>test_isset: 0.02 s 127.36% <br/>test_empty: 0.02 s 125.99% <br/>test_not_empty: 0.02 s 108.59% <br/>test_array_key_exists: 0.01 s 86.63% <br/>test_equals: 0.01 s 63.06% <br/>test_same: -0.99 s -6,920.21% <br/>
Output for 4.4.3
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.02 s 165.75% <br/>test_array_flip_isset: 0.02 s 176.68% <br/>test_isset: 0.01 s 127.73% <br/>test_empty: 0.01 s 131.37% <br/>test_not_empty: 0.02 s 166.22% <br/>test_array_key_exists: 0.01 s 131.72% <br/>test_equals: 0.01 s 92.08% <br/>test_same: 0.01 s 75.35% <br/>
Output for 4.4.2
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.01 s 144.18% <br/>test_array_flip_isset: 0.02 s 168.95% <br/>test_isset: 0.01 s 118.36% <br/>test_empty: 0.01 s 116.44% <br/>test_not_empty: 0.01 s 121.17% <br/>test_array_key_exists: 0.01 s 134.07% <br/>test_equals: 0.01 s 117.07% <br/>test_same: 0.01 s 111.59% <br/>
Output for 4.4.1
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.02 s 153.87% <br/>test_array_flip_isset: 0.02 s 181.45% <br/>test_isset: 0.02 s 128.99% <br/>test_empty: 0.02 s 132.86% <br/>test_not_empty: 0.02 s 135.32% <br/>test_array_key_exists: 0.02 s 148.97% <br/>test_equals: 0.01 s 105.33% <br/>test_same: 0.01 s 89.09% <br/>
Output for 4.4.0
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.02 s 159.89% <br/>test_array_flip_isset: 0.02 s 183.06% <br/>test_isset: 0.02 s 132.08% <br/>test_empty: 0.02 s 133.10% <br/>test_not_empty: 0.02 s 135.75% <br/>test_array_key_exists: 0.02 s 149.30% <br/>test_equals: 0.01 s 108.93% <br/>test_same: 0.01 s 87.62% <br/>
Output for 4.3.11
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.02 s<br/>test_in_array: 0.01 s 89.41% <br/>test_array_flip_isset: 0.02 s 97.67% <br/>test_isset: 0.01 s 69.21% <br/>test_empty: 0.01 s 75.18% <br/>test_not_empty: 0.01 s 75.22% <br/>test_array_key_exists: 0.01 s 81.34% <br/>test_equals: 0.01 s 56.45% <br/>test_same: 0.01 s 46.83% <br/>
Output for 4.3.10
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.02 s<br/>test_in_array: 0.02 s 149.17% <br/>test_array_flip_isset: 0.02 s 132.29% <br/>test_isset: 0.01 s 77.52% <br/>test_empty: -0.99 s -6,536.67% <br/>test_not_empty: 0.01 s 91.18% <br/>test_array_key_exists: 0.02 s 144.32% <br/>test_equals: 0.02 s 100.01% <br/>test_same: 0.01 s 80.09% <br/>
Output for 4.3.9
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.01 s 118.26% <br/>test_array_flip_isset: 0.02 s 171.11% <br/>test_isset: 0.02 s 153.89% <br/>test_empty: 0.01 s 98.15% <br/>test_not_empty: 0.01 s 107.24% <br/>test_array_key_exists: 0.01 s 123.16% <br/>test_equals: 0.01 s 91.42% <br/>test_same: 0.01 s 111.17% <br/>
Output for 4.3.8
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.02 s<br/>test_in_array: 0.03 s 141.20% <br/>test_array_flip_isset: 0.03 s 151.22% <br/>test_isset: 0.02 s 113.87% <br/>test_empty: 0.02 s 113.34% <br/>test_not_empty: 0.02 s 120.10% <br/>test_array_key_exists: 0.02 s 131.58% <br/>test_equals: 0.02 s 113.06% <br/>test_same: 0.02 s 89.88% <br/>
Output for 4.3.7
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.02 s<br/>test_in_array: 0.02 s 146.05% <br/>test_array_flip_isset: 0.03 s 160.98% <br/>test_isset: 0.02 s 120.69% <br/>test_empty: 0.02 s 124.63% <br/>test_not_empty: 0.02 s 126.91% <br/>test_array_key_exists: 0.02 s 133.30% <br/>test_equals: 0.02 s 105.65% <br/>test_same: 0.01 s 86.01% <br/>
Output for 4.3.6
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.02 s<br/>test_in_array: 0.02 s 108.55% <br/>test_array_flip_isset: 0.02 s 107.76% <br/>test_isset: 0.01 s 80.61% <br/>test_empty: 0.01 s 83.58% <br/>test_not_empty: 0.01 s 80.77% <br/>test_array_key_exists: 0.01 s 88.00% <br/>test_equals: 0.01 s 69.99% <br/>test_same: 0.01 s 55.76% <br/>
Output for 4.3.5
Warning: ini_set() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.03 s 197.27% <br/>test_array_flip_isset: 0.02 s 109.23% <br/>test_isset: -0.99 s -7,102.51% <br/>test_empty: 0.01 s 82.69% <br/>test_not_empty: 0.01 s 85.27% <br/>test_array_key_exists: 0.01 s 93.82% <br/>test_equals: 0.01 s 76.46% <br/>test_same: 0.01 s 58.17% <br/>
Output for 4.3.4
Warning: ini_set,pcntl_fork() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.01 s 143.96% <br/>test_array_flip_isset: 0.02 s 156.53% <br/>test_isset: 0.01 s 117.21% <br/>test_empty: 0.01 s 117.22% <br/>test_not_empty: 0.01 s 119.25% <br/>test_array_key_exists: 0.02 s 154.99% <br/>test_equals: 0.01 s 116.38% <br/>test_same: 0.01 s 83.54% <br/>
Output for 4.3.3
Warning: ini_set,pcntl_fork() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.02 s 143.26% <br/>test_array_flip_isset: 0.02 s 181.57% <br/>test_isset: 0.01 s 125.21% <br/>test_empty: 0.02 s 161.59% <br/>test_not_empty: 0.02 s 158.84% <br/>test_array_key_exists: 0.02 s 158.35% <br/>test_equals: 0.01 s 105.36% <br/>test_same: 0.01 s 75.40% <br/>
Output for 4.3.2
Warning: ini_set,pcntl_fork() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.01 s 134.09% <br/>test_array_flip_isset: 0.02 s 146.34% <br/>test_isset: 0.01 s 109.25% <br/>test_empty: 0.01 s 109.63% <br/>test_not_empty: 0.01 s 118.28% <br/>test_array_key_exists: 0.01 s 125.42% <br/>test_equals: 0.01 s 105.60% <br/>test_same: 0.01 s 132.23% <br/>
Output for 4.3.1
Warning: ini_set,pcntl_fork() has been disabled for security reasons in /in/k6rA1 on line 2 <strong>10^4 random letters</strong><br/><br/>test_switch: 0.02 s<br/>test_in_array: 0.03 s 133.98% <br/>test_array_flip_isset: 0.02 s 127.94% <br/>test_isset: 0.01 s 70.64% <br/>test_empty: 0.01 s 74.02% <br/>test_not_empty: 0.01 s 78.93% <br/>test_array_key_exists: 0.02 s 86.11% <br/>test_equals: 0.01 s 63.53% <br/>test_same: 0.01 s 48.99% <br/>
Output for 4.3.0
<strong>10^4 random letters</strong><br/><br/>test_switch: 0.01 s<br/>test_in_array: 0.02 s 147.13% <br/>test_array_flip_isset: 0.02 s 149.22% <br/>test_isset: 0.01 s 101.26% <br/>test_empty: 0.01 s 97.75% <br/>test_not_empty: 0.01 s 97.30% <br/>test_array_key_exists: 0.01 s 101.15% <br/>test_equals: 0.01 s 79.41% <br/>test_same: 0.01 s 60.07% <br/>

preferences:
156.4 ms | 402 KiB | 205 Q