3v4l.org

run code in 300+ PHP versions simultaneously
<?php // needed to cope with a million entry array ini_set('memory_limit', '512M'); $limit = 100000; $text[] = "Now is the time"; $text[] = "for all good men"; $text[] = "to come to the aid"; $text[] = "of their country."; $text2['part1'] = "Now is the time"; $text2['part2'] = "for all good men"; $text2['part3'] = "to come to the aid"; $text2['part4'] = "of their country."; $bigArray = fillArray($limit); $max=count($bigArray); ####################################################### $start = microtime(TRUE); for($i=0; $i<$max; $i++) { $bigArray[$i] = $text[0]; $bigArray[$i] .= ' '; $bigArray[$i] .= $text[1]; $bigArray[$i] .= ' '; $bigArray[$i] .= $text[2]; $bigArray[$i] .= ' '; $bigArray[$i] .= $text[3]; } $results['dotequal']['time'] = microtime(TRUE) - $start; $results['dotequal']['name'] = 'Dot Equals'; ####################################################### $start = microtime(TRUE); for($i=0; $i<$max; $i++) { $bigArray[$i] = $text[0].' '.$text[1].' '.$text[2].' '.$text[3]; } $results['concat']['time'] = microtime(TRUE) - $start; $results['concat']['name'] = 'Dot Concatenation'; ####################################################### $start = microtime(TRUE); for($i=0; $i<$max; $i++) { $bigArray[$i] = "$text[0] $text[1] $text[2] $text[3]"; } $results['replace']['time'] = microtime(TRUE) - $start; $results['replace']['name'] = 'In-string Replacement'; ####################################################### $start = microtime(TRUE); for($i=0; $i<$max; $i++) { $bigArray[$i] = "{$text2['part1']} {$text2['part2']} {$text2['part3']} {$text2['part4']}"; } $results['replace2']['time'] = microtime(TRUE) - $start; $results['replace2']['name'] = 'Complex In-string Replacement'; ####################################################### $start = microtime(TRUE); for($i=0; $i<$max; $i++) { $bigArray[$i] = sprintf('%s %s %s %s', $text[0], $text[1], $text[2], $text[3]); } $results['sprintf']['time'] = microtime(TRUE) - $start; $results['sprintf']['name'] = 'Function: sprintf()'; ####################################################### $start = microtime(TRUE); for($i=0; $i<$max; $i++) { $bigArray[$i] = implode(' ', $text); } $results['implode']['time'] = microtime(TRUE) - $start; $results['implode']['name'] = 'Function: implode()'; ####################################################### echo "<table width=\"400\" cellspacing=\"3\">\n"; echo "<tr><td width=\"50%\"><strong>Array Size:</strong></td><td width=\"50%\"><strong>$limit</strong></td></tr>\n"; foreach($results AS $test) { echo "<tr><td>".$test['name']."</td><td>".sprintf("%01.6f", $test['time'])."</td></tr>\n"; } echo "</table>"; ####################################################### function fillArray($limit) { // build huge array for($i=0; $i<$limit; $i++) { $array[] = $i; } return $array; } ?>
Output for 7.4.1
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.037251</td></tr> <tr><td>Dot Concatenation</td><td>0.026285</td></tr> <tr><td>In-string Replacement</td><td>0.020570</td></tr> <tr><td>Complex In-string Replacement</td><td>0.019729</td></tr> <tr><td>Function: sprintf()</td><td>0.050634</td></tr> <tr><td>Function: implode()</td><td>0.030841</td></tr> </table>
Output for 7.4.0
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.056090</td></tr> <tr><td>Dot Concatenation</td><td>0.037026</td></tr> <tr><td>In-string Replacement</td><td>0.025033</td></tr> <tr><td>Complex In-string Replacement</td><td>0.026692</td></tr> <tr><td>Function: sprintf()</td><td>0.061916</td></tr> <tr><td>Function: implode()</td><td>0.029511</td></tr> </table>
Output for 7.3.13
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.058350</td></tr> <tr><td>Dot Concatenation</td><td>0.037226</td></tr> <tr><td>In-string Replacement</td><td>0.025321</td></tr> <tr><td>Complex In-string Replacement</td><td>0.026927</td></tr> <tr><td>Function: sprintf()</td><td>0.050373</td></tr> <tr><td>Function: implode()</td><td>0.029570</td></tr> </table>
Output for 7.3.12
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.055451</td></tr> <tr><td>Dot Concatenation</td><td>0.037344</td></tr> <tr><td>In-string Replacement</td><td>0.025502</td></tr> <tr><td>Complex In-string Replacement</td><td>0.027002</td></tr> <tr><td>Function: sprintf()</td><td>0.050742</td></tr> <tr><td>Function: implode()</td><td>0.029104</td></tr> </table>
Output for 7.3.11
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.035716</td></tr> <tr><td>Dot Concatenation</td><td>0.025088</td></tr> <tr><td>In-string Replacement</td><td>0.017998</td></tr> <tr><td>Complex In-string Replacement</td><td>0.018644</td></tr> <tr><td>Function: sprintf()</td><td>0.034286</td></tr> <tr><td>Function: implode()</td><td>0.020355</td></tr> </table>
Output for 7.3.10
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.036287</td></tr> <tr><td>Dot Concatenation</td><td>0.025470</td></tr> <tr><td>In-string Replacement</td><td>0.018185</td></tr> <tr><td>Complex In-string Replacement</td><td>0.019040</td></tr> <tr><td>Function: sprintf()</td><td>0.041488</td></tr> <tr><td>Function: implode()</td><td>0.027609</td></tr> </table>
Output for 7.3.9
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.043163</td></tr> <tr><td>Dot Concatenation</td><td>0.031873</td></tr> <tr><td>In-string Replacement</td><td>0.020761</td></tr> <tr><td>Complex In-string Replacement</td><td>0.026138</td></tr> <tr><td>Function: sprintf()</td><td>0.048370</td></tr> <tr><td>Function: implode()</td><td>0.032608</td></tr> </table>
Output for 7.3.8
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.040887</td></tr> <tr><td>Dot Concatenation</td><td>0.025212</td></tr> <tr><td>In-string Replacement</td><td>0.017713</td></tr> <tr><td>Complex In-string Replacement</td><td>0.019831</td></tr> <tr><td>Function: sprintf()</td><td>0.035949</td></tr> <tr><td>Function: implode()</td><td>0.018838</td></tr> </table>
Output for 7.3.7
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.034636</td></tr> <tr><td>Dot Concatenation</td><td>0.025733</td></tr> <tr><td>In-string Replacement</td><td>0.022294</td></tr> <tr><td>Complex In-string Replacement</td><td>0.025616</td></tr> <tr><td>Function: sprintf()</td><td>0.046395</td></tr> <tr><td>Function: implode()</td><td>0.031660</td></tr> </table>
Output for 7.3.6
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.055373</td></tr> <tr><td>Dot Concatenation</td><td>0.037457</td></tr> <tr><td>In-string Replacement</td><td>0.025235</td></tr> <tr><td>Complex In-string Replacement</td><td>0.027053</td></tr> <tr><td>Function: sprintf()</td><td>0.048608</td></tr> <tr><td>Function: implode()</td><td>0.029758</td></tr> </table>
Output for 7.3.5
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.037357</td></tr> <tr><td>Dot Concatenation</td><td>0.030795</td></tr> <tr><td>In-string Replacement</td><td>0.021535</td></tr> <tr><td>Complex In-string Replacement</td><td>0.018398</td></tr> <tr><td>Function: sprintf()</td><td>0.033050</td></tr> <tr><td>Function: implode()</td><td>0.019501</td></tr> </table>
Output for 7.3.4
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.036359</td></tr> <tr><td>Dot Concatenation</td><td>0.024319</td></tr> <tr><td>In-string Replacement</td><td>0.019003</td></tr> <tr><td>Complex In-string Replacement</td><td>0.025367</td></tr> <tr><td>Function: sprintf()</td><td>0.047953</td></tr> <tr><td>Function: implode()</td><td>0.028429</td></tr> </table>
Output for 7.3.3
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.034159</td></tr> <tr><td>Dot Concatenation</td><td>0.023802</td></tr> <tr><td>In-string Replacement</td><td>0.024577</td></tr> <tr><td>Complex In-string Replacement</td><td>0.025837</td></tr> <tr><td>Function: sprintf()</td><td>0.046928</td></tr> <tr><td>Function: implode()</td><td>0.027672</td></tr> </table>
Output for 7.3.2
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.037847</td></tr> <tr><td>Dot Concatenation</td><td>0.026788</td></tr> <tr><td>In-string Replacement</td><td>0.018917</td></tr> <tr><td>Complex In-string Replacement</td><td>0.020093</td></tr> <tr><td>Function: sprintf()</td><td>0.037138</td></tr> <tr><td>Function: implode()</td><td>0.025621</td></tr> </table>
Output for 7.3.1
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.054167</td></tr> <tr><td>Dot Concatenation</td><td>0.031455</td></tr> <tr><td>In-string Replacement</td><td>0.016699</td></tr> <tr><td>Complex In-string Replacement</td><td>0.017102</td></tr> <tr><td>Function: sprintf()</td><td>0.022337</td></tr> <tr><td>Function: implode()</td><td>0.021689</td></tr> </table>
Output for 7.3.0
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.050154</td></tr> <tr><td>Dot Concatenation</td><td>0.034931</td></tr> <tr><td>In-string Replacement</td><td>0.023355</td></tr> <tr><td>Complex In-string Replacement</td><td>0.019280</td></tr> <tr><td>Function: sprintf()</td><td>0.037909</td></tr> <tr><td>Function: implode()</td><td>0.015862</td></tr> </table>
Output for 7.2.26
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.044803</td></tr> <tr><td>Dot Concatenation</td><td>0.031489</td></tr> <tr><td>In-string Replacement</td><td>0.020343</td></tr> <tr><td>Complex In-string Replacement</td><td>0.021692</td></tr> <tr><td>Function: sprintf()</td><td>0.039839</td></tr> <tr><td>Function: implode()</td><td>0.025193</td></tr> </table>
Output for 7.2.25
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.047403</td></tr> <tr><td>Dot Concatenation</td><td>0.027626</td></tr> <tr><td>In-string Replacement</td><td>0.016792</td></tr> <tr><td>Complex In-string Replacement</td><td>0.018090</td></tr> <tr><td>Function: sprintf()</td><td>0.035887</td></tr> <tr><td>Function: implode()</td><td>0.022855</td></tr> </table>
Output for 7.2.24
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.041704</td></tr> <tr><td>Dot Concatenation</td><td>0.025747</td></tr> <tr><td>In-string Replacement</td><td>0.018775</td></tr> <tr><td>Complex In-string Replacement</td><td>0.020237</td></tr> <tr><td>Function: sprintf()</td><td>0.035948</td></tr> <tr><td>Function: implode()</td><td>0.021726</td></tr> </table>
Output for 7.2.23
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.034388</td></tr> <tr><td>Dot Concatenation</td><td>0.033629</td></tr> <tr><td>In-string Replacement</td><td>0.025338</td></tr> <tr><td>Complex In-string Replacement</td><td>0.028004</td></tr> <tr><td>Function: sprintf()</td><td>0.047947</td></tr> <tr><td>Function: implode()</td><td>0.034879</td></tr> </table>
Output for 7.2.22
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.043429</td></tr> <tr><td>Dot Concatenation</td><td>0.029735</td></tr> <tr><td>In-string Replacement</td><td>0.019034</td></tr> <tr><td>Complex In-string Replacement</td><td>0.021305</td></tr> <tr><td>Function: sprintf()</td><td>0.041422</td></tr> <tr><td>Function: implode()</td><td>0.029617</td></tr> </table>
Output for 7.2.21
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.036227</td></tr> <tr><td>Dot Concatenation</td><td>0.026084</td></tr> <tr><td>In-string Replacement</td><td>0.016924</td></tr> <tr><td>Complex In-string Replacement</td><td>0.020257</td></tr> <tr><td>Function: sprintf()</td><td>0.031298</td></tr> <tr><td>Function: implode()</td><td>0.026900</td></tr> </table>
Output for 7.2.20
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.060720</td></tr> <tr><td>Dot Concatenation</td><td>0.040513</td></tr> <tr><td>In-string Replacement</td><td>0.025285</td></tr> <tr><td>Complex In-string Replacement</td><td>0.028002</td></tr> <tr><td>Function: sprintf()</td><td>0.047157</td></tr> <tr><td>Function: implode()</td><td>0.032623</td></tr> </table>
Output for 7.2.19
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.048635</td></tr> <tr><td>Dot Concatenation</td><td>0.033552</td></tr> <tr><td>In-string Replacement</td><td>0.019327</td></tr> <tr><td>Complex In-string Replacement</td><td>0.021535</td></tr> <tr><td>Function: sprintf()</td><td>0.042848</td></tr> <tr><td>Function: implode()</td><td>0.028661</td></tr> </table>
Output for 7.2.18
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.042373</td></tr> <tr><td>Dot Concatenation</td><td>0.030694</td></tr> <tr><td>In-string Replacement</td><td>0.019478</td></tr> <tr><td>Complex In-string Replacement</td><td>0.020877</td></tr> <tr><td>Function: sprintf()</td><td>0.038008</td></tr> <tr><td>Function: implode()</td><td>0.023634</td></tr> </table>
Output for 7.2.17
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.038185</td></tr> <tr><td>Dot Concatenation</td><td>0.026704</td></tr> <tr><td>In-string Replacement</td><td>0.018194</td></tr> <tr><td>Complex In-string Replacement</td><td>0.020114</td></tr> <tr><td>Function: sprintf()</td><td>0.034262</td></tr> <tr><td>Function: implode()</td><td>0.021816</td></tr> </table>
Output for 7.2.16
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.061652</td></tr> <tr><td>Dot Concatenation</td><td>0.038719</td></tr> <tr><td>In-string Replacement</td><td>0.017141</td></tr> <tr><td>Complex In-string Replacement</td><td>0.022270</td></tr> <tr><td>Function: sprintf()</td><td>0.058796</td></tr> <tr><td>Function: implode()</td><td>0.033289</td></tr> </table>
Output for 7.2.15
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.058847</td></tr> <tr><td>Dot Concatenation</td><td>0.040304</td></tr> <tr><td>In-string Replacement</td><td>0.023290</td></tr> <tr><td>Complex In-string Replacement</td><td>0.020272</td></tr> <tr><td>Function: sprintf()</td><td>0.031212</td></tr> <tr><td>Function: implode()</td><td>0.015944</td></tr> </table>
Output for 7.2.14
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.033727</td></tr> <tr><td>Dot Concatenation</td><td>0.026014</td></tr> <tr><td>In-string Replacement</td><td>0.021553</td></tr> <tr><td>Complex In-string Replacement</td><td>0.027027</td></tr> <tr><td>Function: sprintf()</td><td>0.050048</td></tr> <tr><td>Function: implode()</td><td>0.030346</td></tr> </table>
Output for 7.2.13
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.057252</td></tr> <tr><td>Dot Concatenation</td><td>0.041119</td></tr> <tr><td>In-string Replacement</td><td>0.025181</td></tr> <tr><td>Complex In-string Replacement</td><td>0.027385</td></tr> <tr><td>Function: sprintf()</td><td>0.035215</td></tr> <tr><td>Function: implode()</td><td>0.023132</td></tr> </table>
Output for 7.2.12
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.044966</td></tr> <tr><td>Dot Concatenation</td><td>0.027951</td></tr> <tr><td>In-string Replacement</td><td>0.017457</td></tr> <tr><td>Complex In-string Replacement</td><td>0.018907</td></tr> <tr><td>Function: sprintf()</td><td>0.024126</td></tr> <tr><td>Function: implode()</td><td>0.018315</td></tr> </table>
Output for 7.2.11
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.039894</td></tr> <tr><td>Dot Concatenation</td><td>0.026411</td></tr> <tr><td>In-string Replacement</td><td>0.016854</td></tr> <tr><td>Complex In-string Replacement</td><td>0.019847</td></tr> <tr><td>Function: sprintf()</td><td>0.023132</td></tr> <tr><td>Function: implode()</td><td>0.016357</td></tr> </table>
Output for 7.2.10
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.034394</td></tr> <tr><td>Dot Concatenation</td><td>0.025493</td></tr> <tr><td>In-string Replacement</td><td>0.016853</td></tr> <tr><td>Complex In-string Replacement</td><td>0.019364</td></tr> <tr><td>Function: sprintf()</td><td>0.023194</td></tr> <tr><td>Function: implode()</td><td>0.016563</td></tr> </table>
Output for 7.2.9
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.040211</td></tr> <tr><td>Dot Concatenation</td><td>0.029461</td></tr> <tr><td>In-string Replacement</td><td>0.020065</td></tr> <tr><td>Complex In-string Replacement</td><td>0.022072</td></tr> <tr><td>Function: sprintf()</td><td>0.026205</td></tr> <tr><td>Function: implode()</td><td>0.018416</td></tr> </table>
Output for 7.2.8
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.039385</td></tr> <tr><td>Dot Concatenation</td><td>0.026645</td></tr> <tr><td>In-string Replacement</td><td>0.018566</td></tr> <tr><td>Complex In-string Replacement</td><td>0.020940</td></tr> <tr><td>Function: sprintf()</td><td>0.022947</td></tr> <tr><td>Function: implode()</td><td>0.016800</td></tr> </table>
Output for 7.2.7
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.055800</td></tr> <tr><td>Dot Concatenation</td><td>0.033601</td></tr> <tr><td>In-string Replacement</td><td>0.018270</td></tr> <tr><td>Complex In-string Replacement</td><td>0.020598</td></tr> <tr><td>Function: sprintf()</td><td>0.025290</td></tr> <tr><td>Function: implode()</td><td>0.018244</td></tr> </table>
Output for 7.2.6
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.048487</td></tr> <tr><td>Dot Concatenation</td><td>0.028941</td></tr> <tr><td>In-string Replacement</td><td>0.017777</td></tr> <tr><td>Complex In-string Replacement</td><td>0.019215</td></tr> <tr><td>Function: sprintf()</td><td>0.025125</td></tr> <tr><td>Function: implode()</td><td>0.016710</td></tr> </table>
Output for 7.2.5
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.037771</td></tr> <tr><td>Dot Concatenation</td><td>0.025700</td></tr> <tr><td>In-string Replacement</td><td>0.018411</td></tr> <tr><td>Complex In-string Replacement</td><td>0.019516</td></tr> <tr><td>Function: sprintf()</td><td>0.023995</td></tr> <tr><td>Function: implode()</td><td>0.016779</td></tr> </table>
Output for 7.2.4
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.039733</td></tr> <tr><td>Dot Concatenation</td><td>0.029095</td></tr> <tr><td>In-string Replacement</td><td>0.019253</td></tr> <tr><td>Complex In-string Replacement</td><td>0.020487</td></tr> <tr><td>Function: sprintf()</td><td>0.025660</td></tr> <tr><td>Function: implode()</td><td>0.018192</td></tr> </table>
Output for 7.2.3
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.037900</td></tr> <tr><td>Dot Concatenation</td><td>0.028750</td></tr> <tr><td>In-string Replacement</td><td>0.019276</td></tr> <tr><td>Complex In-string Replacement</td><td>0.020947</td></tr> <tr><td>Function: sprintf()</td><td>0.026685</td></tr> <tr><td>Function: implode()</td><td>0.018344</td></tr> </table>
Output for 7.2.2
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.033844</td></tr> <tr><td>Dot Concatenation</td><td>0.024545</td></tr> <tr><td>In-string Replacement</td><td>0.017648</td></tr> <tr><td>Complex In-string Replacement</td><td>0.019690</td></tr> <tr><td>Function: sprintf()</td><td>0.021953</td></tr> <tr><td>Function: implode()</td><td>0.015460</td></tr> </table>
Output for 7.2.1
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.058864</td></tr> <tr><td>Dot Concatenation</td><td>0.036211</td></tr> <tr><td>In-string Replacement</td><td>0.018267</td></tr> <tr><td>Complex In-string Replacement</td><td>0.020175</td></tr> <tr><td>Function: sprintf()</td><td>0.024265</td></tr> <tr><td>Function: implode()</td><td>0.016780</td></tr> </table>
Output for 7.2.0
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.038545</td></tr> <tr><td>Dot Concatenation</td><td>0.026265</td></tr> <tr><td>In-string Replacement</td><td>0.017994</td></tr> <tr><td>Complex In-string Replacement</td><td>0.019742</td></tr> <tr><td>Function: sprintf()</td><td>0.023405</td></tr> <tr><td>Function: implode()</td><td>0.018054</td></tr> </table>
Output for 7.1.33
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.036548</td></tr> <tr><td>Dot Concatenation</td><td>0.033670</td></tr> <tr><td>In-string Replacement</td><td>0.028770</td></tr> <tr><td>Complex In-string Replacement</td><td>0.036508</td></tr> <tr><td>Function: sprintf()</td><td>0.049933</td></tr> <tr><td>Function: implode()</td><td>0.043479</td></tr> </table>
Output for 7.1.32
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.057631</td></tr> <tr><td>Dot Concatenation</td><td>0.049437</td></tr> <tr><td>In-string Replacement</td><td>0.031339</td></tr> <tr><td>Complex In-string Replacement</td><td>0.029192</td></tr> <tr><td>Function: sprintf()</td><td>0.033238</td></tr> <tr><td>Function: implode()</td><td>0.022752</td></tr> </table>
Output for 7.1.31
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.036728</td></tr> <tr><td>Dot Concatenation</td><td>0.049224</td></tr> <tr><td>In-string Replacement</td><td>0.031460</td></tr> <tr><td>Complex In-string Replacement</td><td>0.034622</td></tr> <tr><td>Function: sprintf()</td><td>0.269188</td></tr> <tr><td>Function: implode()</td><td>0.024609</td></tr> </table>
Output for 7.1.30
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.058164</td></tr> <tr><td>Dot Concatenation</td><td>0.047853</td></tr> <tr><td>In-string Replacement</td><td>0.025456</td></tr> <tr><td>Complex In-string Replacement</td><td>0.025379</td></tr> <tr><td>Function: sprintf()</td><td>0.033531</td></tr> <tr><td>Function: implode()</td><td>0.031527</td></tr> </table>
Output for 7.1.29
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.045154</td></tr> <tr><td>Dot Concatenation</td><td>0.032342</td></tr> <tr><td>In-string Replacement</td><td>0.023996</td></tr> <tr><td>Complex In-string Replacement</td><td>0.025401</td></tr> <tr><td>Function: sprintf()</td><td>0.033562</td></tr> <tr><td>Function: implode()</td><td>0.022678</td></tr> </table>
Output for 7.1.28
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.038518</td></tr> <tr><td>Dot Concatenation</td><td>0.035705</td></tr> <tr><td>In-string Replacement</td><td>0.025634</td></tr> <tr><td>Complex In-string Replacement</td><td>0.027108</td></tr> <tr><td>Function: sprintf()</td><td>0.055175</td></tr> <tr><td>Function: implode()</td><td>0.026586</td></tr> </table>
Output for 7.1.27
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.035715</td></tr> <tr><td>Dot Concatenation</td><td>0.033105</td></tr> <tr><td>In-string Replacement</td><td>0.026177</td></tr> <tr><td>Complex In-string Replacement</td><td>0.025281</td></tr> <tr><td>Function: sprintf()</td><td>0.044390</td></tr> <tr><td>Function: implode()</td><td>0.023804</td></tr> </table>
Output for 7.1.26
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.040854</td></tr> <tr><td>Dot Concatenation</td><td>0.037368</td></tr> <tr><td>In-string Replacement</td><td>0.026887</td></tr> <tr><td>Complex In-string Replacement</td><td>0.028741</td></tr> <tr><td>Function: sprintf()</td><td>0.044535</td></tr> <tr><td>Function: implode()</td><td>0.028892</td></tr> </table>
Output for 7.1.25
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.065173</td></tr> <tr><td>Dot Concatenation</td><td>0.048956</td></tr> <tr><td>In-string Replacement</td><td>0.031146</td></tr> <tr><td>Complex In-string Replacement</td><td>0.033083</td></tr> <tr><td>Function: sprintf()</td><td>0.041673</td></tr> <tr><td>Function: implode()</td><td>0.032215</td></tr> </table>
Output for 7.1.24
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.035066</td></tr> <tr><td>Dot Concatenation</td><td>0.033842</td></tr> <tr><td>In-string Replacement</td><td>0.024180</td></tr> <tr><td>Complex In-string Replacement</td><td>0.025614</td></tr> <tr><td>Function: sprintf()</td><td>0.031726</td></tr> <tr><td>Function: implode()</td><td>0.021989</td></tr> </table>
Output for 7.1.23
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.035593</td></tr> <tr><td>Dot Concatenation</td><td>0.032035</td></tr> <tr><td>In-string Replacement</td><td>0.024519</td></tr> <tr><td>Complex In-string Replacement</td><td>0.025828</td></tr> <tr><td>Function: sprintf()</td><td>0.032681</td></tr> <tr><td>Function: implode()</td><td>0.021696</td></tr> </table>
Output for 7.1.22
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.034824</td></tr> <tr><td>Dot Concatenation</td><td>0.032038</td></tr> <tr><td>In-string Replacement</td><td>0.023821</td></tr> <tr><td>Complex In-string Replacement</td><td>0.025531</td></tr> <tr><td>Function: sprintf()</td><td>0.031223</td></tr> <tr><td>Function: implode()</td><td>0.021138</td></tr> </table>
Output for 7.1.21
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.037572</td></tr> <tr><td>Dot Concatenation</td><td>0.032334</td></tr> <tr><td>In-string Replacement</td><td>0.024788</td></tr> <tr><td>Complex In-string Replacement</td><td>0.025322</td></tr> <tr><td>Function: sprintf()</td><td>0.031324</td></tr> <tr><td>Function: implode()</td><td>0.021617</td></tr> </table>
Output for 7.1.20
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.036183</td></tr> <tr><td>Dot Concatenation</td><td>0.033864</td></tr> <tr><td>In-string Replacement</td><td>0.025027</td></tr> <tr><td>Complex In-string Replacement</td><td>0.025826</td></tr> <tr><td>Function: sprintf()</td><td>0.033329</td></tr> <tr><td>Function: implode()</td><td>0.022172</td></tr> </table>
Output for 7.1.19
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.036905</td></tr> <tr><td>Dot Concatenation</td><td>0.032857</td></tr> <tr><td>In-string Replacement</td><td>0.024374</td></tr> <tr><td>Complex In-string Replacement</td><td>0.026137</td></tr> <tr><td>Function: sprintf()</td><td>0.032011</td></tr> <tr><td>Function: implode()</td><td>0.023009</td></tr> </table>
Output for 7.1.18
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.052151</td></tr> <tr><td>Dot Concatenation</td><td>0.042128</td></tr> <tr><td>In-string Replacement</td><td>0.025239</td></tr> <tr><td>Complex In-string Replacement</td><td>0.027242</td></tr> <tr><td>Function: sprintf()</td><td>0.033334</td></tr> <tr><td>Function: implode()</td><td>0.022266</td></tr> </table>
Output for 7.1.17
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.042866</td></tr> <tr><td>Dot Concatenation</td><td>0.039152</td></tr> <tr><td>In-string Replacement</td><td>0.026814</td></tr> <tr><td>Complex In-string Replacement</td><td>0.027896</td></tr> <tr><td>Function: sprintf()</td><td>0.036037</td></tr> <tr><td>Function: implode()</td><td>0.024812</td></tr> </table>
Output for 7.1.16
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.042460</td></tr> <tr><td>Dot Concatenation</td><td>0.037644</td></tr> <tr><td>In-string Replacement</td><td>0.026479</td></tr> <tr><td>Complex In-string Replacement</td><td>0.028353</td></tr> <tr><td>Function: sprintf()</td><td>0.035968</td></tr> <tr><td>Function: implode()</td><td>0.025935</td></tr> </table>
Output for 7.1.15
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.037999</td></tr> <tr><td>Dot Concatenation</td><td>0.033534</td></tr> <tr><td>In-string Replacement</td><td>0.024311</td></tr> <tr><td>Complex In-string Replacement</td><td>0.025786</td></tr> <tr><td>Function: sprintf()</td><td>0.033387</td></tr> <tr><td>Function: implode()</td><td>0.022137</td></tr> </table>
Output for 7.1.14
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.045230</td></tr> <tr><td>Dot Concatenation</td><td>0.040617</td></tr> <tr><td>In-string Replacement</td><td>0.025838</td></tr> <tr><td>Complex In-string Replacement</td><td>0.026055</td></tr> <tr><td>Function: sprintf()</td><td>0.032309</td></tr> <tr><td>Function: implode()</td><td>0.024530</td></tr> </table>
Output for 7.1.13
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.036358</td></tr> <tr><td>Dot Concatenation</td><td>0.033486</td></tr> <tr><td>In-string Replacement</td><td>0.024236</td></tr> <tr><td>Complex In-string Replacement</td><td>0.028943</td></tr> <tr><td>Function: sprintf()</td><td>0.044057</td></tr> <tr><td>Function: implode()</td><td>0.026062</td></tr> </table>
Output for 7.1.12
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.042270</td></tr> <tr><td>Dot Concatenation</td><td>0.038580</td></tr> <tr><td>In-string Replacement</td><td>0.026940</td></tr> <tr><td>Complex In-string Replacement</td><td>0.029089</td></tr> <tr><td>Function: sprintf()</td><td>0.035326</td></tr> <tr><td>Function: implode()</td><td>0.025042</td></tr> </table>
Output for 7.1.11
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.042115</td></tr> <tr><td>Dot Concatenation</td><td>0.037189</td></tr> <tr><td>In-string Replacement</td><td>0.026693</td></tr> <tr><td>Complex In-string Replacement</td><td>0.028572</td></tr> <tr><td>Function: sprintf()</td><td>0.037273</td></tr> <tr><td>Function: implode()</td><td>0.025249</td></tr> </table>
Output for 7.1.10
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.037328</td></tr> <tr><td>Dot Concatenation</td><td>0.039705</td></tr> <tr><td>In-string Replacement</td><td>0.025275</td></tr> <tr><td>Complex In-string Replacement</td><td>0.026279</td></tr> <tr><td>Function: sprintf()</td><td>0.032356</td></tr> <tr><td>Function: implode()</td><td>0.022605</td></tr> </table>
Output for 7.1.9
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.038838</td></tr> <tr><td>Dot Concatenation</td><td>0.033197</td></tr> <tr><td>In-string Replacement</td><td>0.024335</td></tr> <tr><td>Complex In-string Replacement</td><td>0.026063</td></tr> <tr><td>Function: sprintf()</td><td>0.032149</td></tr> <tr><td>Function: implode()</td><td>0.022612</td></tr> </table>
Output for 7.1.8
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.037178</td></tr> <tr><td>Dot Concatenation</td><td>0.033857</td></tr> <tr><td>In-string Replacement</td><td>0.024889</td></tr> <tr><td>Complex In-string Replacement</td><td>0.026195</td></tr> <tr><td>Function: sprintf()</td><td>0.033370</td></tr> <tr><td>Function: implode()</td><td>0.022739</td></tr> </table>
Output for 7.1.7
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.034506</td></tr> <tr><td>Dot Concatenation</td><td>0.033132</td></tr> <tr><td>In-string Replacement</td><td>0.025064</td></tr> <tr><td>Complex In-string Replacement</td><td>0.026447</td></tr> <tr><td>Function: sprintf()</td><td>0.033427</td></tr> <tr><td>Function: implode()</td><td>0.021898</td></tr> </table>
Output for 7.1.6
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.036775</td></tr> <tr><td>Dot Concatenation</td><td>0.032952</td></tr> <tr><td>In-string Replacement</td><td>0.024455</td></tr> <tr><td>Complex In-string Replacement</td><td>0.025544</td></tr> <tr><td>Function: sprintf()</td><td>0.032398</td></tr> <tr><td>Function: implode()</td><td>0.024011</td></tr> </table>
Output for 7.1.5
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.039093</td></tr> <tr><td>Dot Concatenation</td><td>0.034118</td></tr> <tr><td>In-string Replacement</td><td>0.024859</td></tr> <tr><td>Complex In-string Replacement</td><td>0.026018</td></tr> <tr><td>Function: sprintf()</td><td>0.050426</td></tr> <tr><td>Function: implode()</td><td>0.034902</td></tr> </table>
Output for 7.1.4
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.042795</td></tr> <tr><td>Dot Concatenation</td><td>0.037850</td></tr> <tr><td>In-string Replacement</td><td>0.026821</td></tr> <tr><td>Complex In-string Replacement</td><td>0.028176</td></tr> <tr><td>Function: sprintf()</td><td>0.039499</td></tr> <tr><td>Function: implode()</td><td>0.028685</td></tr> </table>
Output for 7.1.3
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.044766</td></tr> <tr><td>Dot Concatenation</td><td>0.045649</td></tr> <tr><td>In-string Replacement</td><td>0.028705</td></tr> <tr><td>Complex In-string Replacement</td><td>0.037229</td></tr> <tr><td>Function: sprintf()</td><td>0.035455</td></tr> <tr><td>Function: implode()</td><td>0.028215</td></tr> </table>
Output for 7.1.2
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.036257</td></tr> <tr><td>Dot Concatenation</td><td>0.033489</td></tr> <tr><td>In-string Replacement</td><td>0.025096</td></tr> <tr><td>Complex In-string Replacement</td><td>0.025999</td></tr> <tr><td>Function: sprintf()</td><td>0.032982</td></tr> <tr><td>Function: implode()</td><td>0.026268</td></tr> </table>
Output for 7.1.1
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.036436</td></tr> <tr><td>Dot Concatenation</td><td>0.033800</td></tr> <tr><td>In-string Replacement</td><td>0.025486</td></tr> <tr><td>Complex In-string Replacement</td><td>0.026734</td></tr> <tr><td>Function: sprintf()</td><td>0.041627</td></tr> <tr><td>Function: implode()</td><td>0.021260</td></tr> </table>
Output for 5.6.20, 7.0.10, 7.0.12, 7.1.0

Process exited with code 137.
Output for 7.0.33
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.048115</td></tr> <tr><td>Dot Concatenation</td><td>0.033158</td></tr> <tr><td>In-string Replacement</td><td>0.024564</td></tr> <tr><td>Complex In-string Replacement</td><td>0.025636</td></tr> <tr><td>Function: sprintf()</td><td>0.221092</td></tr> <tr><td>Function: implode()</td><td>0.021526</td></tr> </table>
Output for 7.0.32
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.047692</td></tr> <tr><td>Dot Concatenation</td><td>0.032891</td></tr> <tr><td>In-string Replacement</td><td>0.023973</td></tr> <tr><td>Complex In-string Replacement</td><td>0.025970</td></tr> <tr><td>Function: sprintf()</td><td>0.034126</td></tr> <tr><td>Function: implode()</td><td>0.024187</td></tr> </table>
Output for 7.0.31
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.039963</td></tr> <tr><td>Dot Concatenation</td><td>0.032628</td></tr> <tr><td>In-string Replacement</td><td>0.024323</td></tr> <tr><td>Complex In-string Replacement</td><td>0.030487</td></tr> <tr><td>Function: sprintf()</td><td>0.033346</td></tr> <tr><td>Function: implode()</td><td>0.026364</td></tr> </table>
Output for 7.0.30
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.039249</td></tr> <tr><td>Dot Concatenation</td><td>0.031767</td></tr> <tr><td>In-string Replacement</td><td>0.024502</td></tr> <tr><td>Complex In-string Replacement</td><td>0.024900</td></tr> <tr><td>Function: sprintf()</td><td>0.032361</td></tr> <tr><td>Function: implode()</td><td>0.023907</td></tr> </table>
Output for 7.0.29
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.053985</td></tr> <tr><td>Dot Concatenation</td><td>0.040920</td></tr> <tr><td>In-string Replacement</td><td>0.029947</td></tr> <tr><td>Complex In-string Replacement</td><td>0.040694</td></tr> <tr><td>Function: sprintf()</td><td>0.034140</td></tr> <tr><td>Function: implode()</td><td>0.025218</td></tr> </table>
Output for 7.0.28
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.038891</td></tr> <tr><td>Dot Concatenation</td><td>0.031968</td></tr> <tr><td>In-string Replacement</td><td>0.023494</td></tr> <tr><td>Complex In-string Replacement</td><td>0.024853</td></tr> <tr><td>Function: sprintf()</td><td>0.032386</td></tr> <tr><td>Function: implode()</td><td>0.024196</td></tr> </table>
Output for 7.0.27
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.046951</td></tr> <tr><td>Dot Concatenation</td><td>0.032252</td></tr> <tr><td>In-string Replacement</td><td>0.023861</td></tr> <tr><td>Complex In-string Replacement</td><td>0.026026</td></tr> <tr><td>Function: sprintf()</td><td>0.031935</td></tr> <tr><td>Function: implode()</td><td>0.028134</td></tr> </table>
Output for 7.0.26
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.045477</td></tr> <tr><td>Dot Concatenation</td><td>0.034220</td></tr> <tr><td>In-string Replacement</td><td>0.025595</td></tr> <tr><td>Complex In-string Replacement</td><td>0.025643</td></tr> <tr><td>Function: sprintf()</td><td>0.035242</td></tr> <tr><td>Function: implode()</td><td>0.025716</td></tr> </table>
Output for 7.0.25
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.039459</td></tr> <tr><td>Dot Concatenation</td><td>0.033527</td></tr> <tr><td>In-string Replacement</td><td>0.024902</td></tr> <tr><td>Complex In-string Replacement</td><td>0.025473</td></tr> <tr><td>Function: sprintf()</td><td>0.033861</td></tr> <tr><td>Function: implode()</td><td>0.026649</td></tr> </table>
Output for 7.0.24
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.052905</td></tr> <tr><td>Dot Concatenation</td><td>0.045132</td></tr> <tr><td>In-string Replacement</td><td>0.032744</td></tr> <tr><td>Complex In-string Replacement</td><td>0.036601</td></tr> <tr><td>Function: sprintf()</td><td>0.034744</td></tr> <tr><td>Function: implode()</td><td>0.022968</td></tr> </table>
Output for 7.0.23
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.062458</td></tr> <tr><td>Dot Concatenation</td><td>0.033143</td></tr> <tr><td>In-string Replacement</td><td>0.024106</td></tr> <tr><td>Complex In-string Replacement</td><td>0.026056</td></tr> <tr><td>Function: sprintf()</td><td>0.032793</td></tr> <tr><td>Function: implode()</td><td>0.023813</td></tr> </table>
Output for 7.0.22
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.040465</td></tr> <tr><td>Dot Concatenation</td><td>0.032959</td></tr> <tr><td>In-string Replacement</td><td>0.024726</td></tr> <tr><td>Complex In-string Replacement</td><td>0.026243</td></tr> <tr><td>Function: sprintf()</td><td>0.033565</td></tr> <tr><td>Function: implode()</td><td>0.024563</td></tr> </table>
Output for 7.0.21
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.041755</td></tr> <tr><td>Dot Concatenation</td><td>0.034585</td></tr> <tr><td>In-string Replacement</td><td>0.024715</td></tr> <tr><td>Complex In-string Replacement</td><td>0.026509</td></tr> <tr><td>Function: sprintf()</td><td>0.032775</td></tr> <tr><td>Function: implode()</td><td>0.026160</td></tr> </table>
Output for 7.0.20
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.058177</td></tr> <tr><td>Dot Concatenation</td><td>0.034204</td></tr> <tr><td>In-string Replacement</td><td>0.024469</td></tr> <tr><td>Complex In-string Replacement</td><td>0.027279</td></tr> <tr><td>Function: sprintf()</td><td>0.033868</td></tr> <tr><td>Function: implode()</td><td>0.024800</td></tr> </table>
Output for 7.0.19
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.042485</td></tr> <tr><td>Dot Concatenation</td><td>0.032506</td></tr> <tr><td>In-string Replacement</td><td>0.023692</td></tr> <tr><td>Complex In-string Replacement</td><td>0.025929</td></tr> <tr><td>Function: sprintf()</td><td>0.031947</td></tr> <tr><td>Function: implode()</td><td>0.021439</td></tr> </table>
Output for 7.0.18
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.039072</td></tr> <tr><td>Dot Concatenation</td><td>0.032194</td></tr> <tr><td>In-string Replacement</td><td>0.023498</td></tr> <tr><td>Complex In-string Replacement</td><td>0.025460</td></tr> <tr><td>Function: sprintf()</td><td>0.031344</td></tr> <tr><td>Function: implode()</td><td>0.022040</td></tr> </table>
Output for 7.0.17
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.052349</td></tr> <tr><td>Dot Concatenation</td><td>0.045051</td></tr> <tr><td>In-string Replacement</td><td>0.029048</td></tr> <tr><td>Complex In-string Replacement</td><td>0.032322</td></tr> <tr><td>Function: sprintf()</td><td>0.048769</td></tr> <tr><td>Function: implode()</td><td>0.023975</td></tr> </table>
Output for 7.0.16
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.042496</td></tr> <tr><td>Dot Concatenation</td><td>0.032676</td></tr> <tr><td>In-string Replacement</td><td>0.024813</td></tr> <tr><td>Complex In-string Replacement</td><td>0.026513</td></tr> <tr><td>Function: sprintf()</td><td>0.033341</td></tr> <tr><td>Function: implode()</td><td>0.022687</td></tr> </table>
Output for 7.0.15
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.040569</td></tr> <tr><td>Dot Concatenation</td><td>0.032130</td></tr> <tr><td>In-string Replacement</td><td>0.024504</td></tr> <tr><td>Complex In-string Replacement</td><td>0.025808</td></tr> <tr><td>Function: sprintf()</td><td>0.032628</td></tr> <tr><td>Function: implode()</td><td>0.029617</td></tr> </table>
Output for 7.0.14
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.042382</td></tr> <tr><td>Dot Concatenation</td><td>0.034141</td></tr> <tr><td>In-string Replacement</td><td>0.024322</td></tr> <tr><td>Complex In-string Replacement</td><td>0.026145</td></tr> <tr><td>Function: sprintf()</td><td>0.033015</td></tr> <tr><td>Function: implode()</td><td>0.033642</td></tr> </table>
Output for 7.0.13
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.041029</td></tr> <tr><td>Dot Concatenation</td><td>0.033917</td></tr> <tr><td>In-string Replacement</td><td>0.024407</td></tr> <tr><td>Complex In-string Replacement</td><td>0.026103</td></tr> <tr><td>Function: sprintf()</td><td>0.033858</td></tr> <tr><td>Function: implode()</td><td>0.030478</td></tr> </table>
Output for 7.0.11
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.046690</td></tr> <tr><td>Dot Concatenation</td><td>0.038881</td></tr> <tr><td>In-string Replacement</td><td>0.025833</td></tr> <tr><td>Complex In-string Replacement</td><td>0.027119</td></tr> <tr><td>Function: sprintf()</td><td>0.034621</td></tr> <tr><td>Function: implode()</td><td>0.024684</td></tr> </table>
Output for 7.0.9
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.053478</td></tr> <tr><td>Dot Concatenation</td><td>0.037712</td></tr> <tr><td>In-string Replacement</td><td>0.028662</td></tr> <tr><td>Complex In-string Replacement</td><td>0.029718</td></tr> <tr><td>Function: sprintf()</td><td>0.037148</td></tr> <tr><td>Function: implode()</td><td>0.028344</td></tr> </table>
Output for 7.0.8
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.041686</td></tr> <tr><td>Dot Concatenation</td><td>0.035733</td></tr> <tr><td>In-string Replacement</td><td>0.024735</td></tr> <tr><td>Complex In-string Replacement</td><td>0.026295</td></tr> <tr><td>Function: sprintf()</td><td>0.032927</td></tr> <tr><td>Function: implode()</td><td>0.030576</td></tr> </table>
Output for 7.0.7
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.039874</td></tr> <tr><td>Dot Concatenation</td><td>0.032225</td></tr> <tr><td>In-string Replacement</td><td>0.023588</td></tr> <tr><td>Complex In-string Replacement</td><td>0.025038</td></tr> <tr><td>Function: sprintf()</td><td>0.031879</td></tr> <tr><td>Function: implode()</td><td>0.025334</td></tr> </table>
Output for 7.0.6
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.042213</td></tr> <tr><td>Dot Concatenation</td><td>0.032700</td></tr> <tr><td>In-string Replacement</td><td>0.027240</td></tr> <tr><td>Complex In-string Replacement</td><td>0.027786</td></tr> <tr><td>Function: sprintf()</td><td>0.032741</td></tr> <tr><td>Function: implode()</td><td>0.026721</td></tr> </table>
Output for 7.0.5
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.047880</td></tr> <tr><td>Dot Concatenation</td><td>0.036716</td></tr> <tr><td>In-string Replacement</td><td>0.025550</td></tr> <tr><td>Complex In-string Replacement</td><td>0.026928</td></tr> <tr><td>Function: sprintf()</td><td>0.035152</td></tr> <tr><td>Function: implode()</td><td>0.026505</td></tr> </table>
Output for 7.0.4
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.044178</td></tr> <tr><td>Dot Concatenation</td><td>0.036824</td></tr> <tr><td>In-string Replacement</td><td>0.026355</td></tr> <tr><td>Complex In-string Replacement</td><td>0.027673</td></tr> <tr><td>Function: sprintf()</td><td>0.035697</td></tr> <tr><td>Function: implode()</td><td>0.025960</td></tr> </table>
Output for 7.0.3
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.040980</td></tr> <tr><td>Dot Concatenation</td><td>0.032768</td></tr> <tr><td>In-string Replacement</td><td>0.023516</td></tr> <tr><td>Complex In-string Replacement</td><td>0.026308</td></tr> <tr><td>Function: sprintf()</td><td>0.031591</td></tr> <tr><td>Function: implode()</td><td>0.020731</td></tr> </table>
Output for 7.0.2
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.042785</td></tr> <tr><td>Dot Concatenation</td><td>0.037179</td></tr> <tr><td>In-string Replacement</td><td>0.024146</td></tr> <tr><td>Complex In-string Replacement</td><td>0.026214</td></tr> <tr><td>Function: sprintf()</td><td>0.033173</td></tr> <tr><td>Function: implode()</td><td>0.021614</td></tr> </table>
Output for 7.0.1
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.047587</td></tr> <tr><td>Dot Concatenation</td><td>0.037405</td></tr> <tr><td>In-string Replacement</td><td>0.027486</td></tr> <tr><td>Complex In-string Replacement</td><td>0.028743</td></tr> <tr><td>Function: sprintf()</td><td>0.035959</td></tr> <tr><td>Function: implode()</td><td>0.024576</td></tr> </table>
Output for 7.0.0
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.041711</td></tr> <tr><td>Dot Concatenation</td><td>0.032680</td></tr> <tr><td>In-string Replacement</td><td>0.024110</td></tr> <tr><td>Complex In-string Replacement</td><td>0.025145</td></tr> <tr><td>Function: sprintf()</td><td>0.032393</td></tr> <tr><td>Function: implode()</td><td>0.021408</td></tr> </table>
Output for 5.6.40
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.097589</td></tr> <tr><td>Dot Concatenation</td><td>0.075634</td></tr> <tr><td>In-string Replacement</td><td>0.065409</td></tr> <tr><td>Complex In-string Replacement</td><td>0.055208</td></tr> <tr><td>Function: sprintf()</td><td>0.085388</td></tr> <tr><td>Function: implode()</td><td>0.057196</td></tr> </table>
Output for 5.6.39
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.106703</td></tr> <tr><td>Dot Concatenation</td><td>0.075835</td></tr> <tr><td>In-string Replacement</td><td>0.059266</td></tr> <tr><td>Complex In-string Replacement</td><td>0.050183</td></tr> <tr><td>Function: sprintf()</td><td>0.073629</td></tr> <tr><td>Function: implode()</td><td>0.048624</td></tr> </table>
Output for 5.6.38
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.074659</td></tr> <tr><td>Dot Concatenation</td><td>0.054878</td></tr> <tr><td>In-string Replacement</td><td>0.048164</td></tr> <tr><td>Complex In-string Replacement</td><td>0.048314</td></tr> <tr><td>Function: sprintf()</td><td>0.073109</td></tr> <tr><td>Function: implode()</td><td>0.047472</td></tr> </table>
Output for 5.6.37
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.074270</td></tr> <tr><td>Dot Concatenation</td><td>0.054982</td></tr> <tr><td>In-string Replacement</td><td>0.048025</td></tr> <tr><td>Complex In-string Replacement</td><td>0.049263</td></tr> <tr><td>Function: sprintf()</td><td>0.073306</td></tr> <tr><td>Function: implode()</td><td>0.046543</td></tr> </table>
Output for 5.6.36
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.096161</td></tr> <tr><td>Dot Concatenation</td><td>0.064407</td></tr> <tr><td>In-string Replacement</td><td>0.048381</td></tr> <tr><td>Complex In-string Replacement</td><td>0.049074</td></tr> <tr><td>Function: sprintf()</td><td>0.071840</td></tr> <tr><td>Function: implode()</td><td>0.045502</td></tr> </table>
Output for 5.6.35
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.077361</td></tr> <tr><td>Dot Concatenation</td><td>0.055583</td></tr> <tr><td>In-string Replacement</td><td>0.048925</td></tr> <tr><td>Complex In-string Replacement</td><td>0.048953</td></tr> <tr><td>Function: sprintf()</td><td>0.074829</td></tr> <tr><td>Function: implode()</td><td>0.051053</td></tr> </table>
Output for 5.6.34
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.072191</td></tr> <tr><td>Dot Concatenation</td><td>0.053953</td></tr> <tr><td>In-string Replacement</td><td>0.048858</td></tr> <tr><td>Complex In-string Replacement</td><td>0.048953</td></tr> <tr><td>Function: sprintf()</td><td>0.075511</td></tr> <tr><td>Function: implode()</td><td>0.049667</td></tr> </table>
Output for 5.6.33
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.085965</td></tr> <tr><td>Dot Concatenation</td><td>0.057063</td></tr> <tr><td>In-string Replacement</td><td>0.048065</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047237</td></tr> <tr><td>Function: sprintf()</td><td>0.072679</td></tr> <tr><td>Function: implode()</td><td>0.048049</td></tr> </table>
Output for 5.6.32
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.073403</td></tr> <tr><td>Dot Concatenation</td><td>0.055410</td></tr> <tr><td>In-string Replacement</td><td>0.048039</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047926</td></tr> <tr><td>Function: sprintf()</td><td>0.086725</td></tr> <tr><td>Function: implode()</td><td>0.047249</td></tr> </table>
Output for 5.6.31
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.088186</td></tr> <tr><td>Dot Concatenation</td><td>0.061596</td></tr> <tr><td>In-string Replacement</td><td>0.053528</td></tr> <tr><td>Complex In-string Replacement</td><td>0.053607</td></tr> <tr><td>Function: sprintf()</td><td>0.082423</td></tr> <tr><td>Function: implode()</td><td>0.053747</td></tr> </table>
Output for 5.6.30
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.074441</td></tr> <tr><td>Dot Concatenation</td><td>0.055568</td></tr> <tr><td>In-string Replacement</td><td>0.047798</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047766</td></tr> <tr><td>Function: sprintf()</td><td>0.073046</td></tr> <tr><td>Function: implode()</td><td>0.048794</td></tr> </table>
Output for 5.6.29
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.073455</td></tr> <tr><td>Dot Concatenation</td><td>0.054654</td></tr> <tr><td>In-string Replacement</td><td>0.046731</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047022</td></tr> <tr><td>Function: sprintf()</td><td>0.072246</td></tr> <tr><td>Function: implode()</td><td>0.047852</td></tr> </table>
Output for 5.6.28
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.085926</td></tr> <tr><td>Dot Concatenation</td><td>0.063081</td></tr> <tr><td>In-string Replacement</td><td>0.052866</td></tr> <tr><td>Complex In-string Replacement</td><td>0.052985</td></tr> <tr><td>Function: sprintf()</td><td>0.082197</td></tr> <tr><td>Function: implode()</td><td>0.053374</td></tr> </table>
Output for 5.6.27
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.076166</td></tr> <tr><td>Dot Concatenation</td><td>0.071833</td></tr> <tr><td>In-string Replacement</td><td>0.047657</td></tr> <tr><td>Complex In-string Replacement</td><td>0.046941</td></tr> <tr><td>Function: sprintf()</td><td>0.070258</td></tr> <tr><td>Function: implode()</td><td>0.046461</td></tr> </table>
Output for 5.6.26
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.088949</td></tr> <tr><td>Dot Concatenation</td><td>0.056453</td></tr> <tr><td>In-string Replacement</td><td>0.048281</td></tr> <tr><td>Complex In-string Replacement</td><td>0.049944</td></tr> <tr><td>Function: sprintf()</td><td>0.073192</td></tr> <tr><td>Function: implode()</td><td>0.048287</td></tr> </table>
Output for 5.6.25
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.073494</td></tr> <tr><td>Dot Concatenation</td><td>0.054400</td></tr> <tr><td>In-string Replacement</td><td>0.046140</td></tr> <tr><td>Complex In-string Replacement</td><td>0.046062</td></tr> <tr><td>Function: sprintf()</td><td>0.069998</td></tr> <tr><td>Function: implode()</td><td>0.046332</td></tr> </table>
Output for 5.6.24
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.075468</td></tr> <tr><td>Dot Concatenation</td><td>0.055902</td></tr> <tr><td>In-string Replacement</td><td>0.046988</td></tr> <tr><td>Complex In-string Replacement</td><td>0.045592</td></tr> <tr><td>Function: sprintf()</td><td>0.069750</td></tr> <tr><td>Function: implode()</td><td>0.045322</td></tr> </table>
Output for 5.6.23
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.075585</td></tr> <tr><td>Dot Concatenation</td><td>0.054893</td></tr> <tr><td>In-string Replacement</td><td>0.047777</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047639</td></tr> <tr><td>Function: sprintf()</td><td>0.074252</td></tr> <tr><td>Function: implode()</td><td>0.047595</td></tr> </table>
Output for 5.6.22
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.095792</td></tr> <tr><td>Dot Concatenation</td><td>0.061421</td></tr> <tr><td>In-string Replacement</td><td>0.051956</td></tr> <tr><td>Complex In-string Replacement</td><td>0.052487</td></tr> <tr><td>Function: sprintf()</td><td>0.081811</td></tr> <tr><td>Function: implode()</td><td>0.051269</td></tr> </table>
Output for 5.6.21
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.076638</td></tr> <tr><td>Dot Concatenation</td><td>0.053655</td></tr> <tr><td>In-string Replacement</td><td>0.048100</td></tr> <tr><td>Complex In-string Replacement</td><td>0.046171</td></tr> <tr><td>Function: sprintf()</td><td>0.069404</td></tr> <tr><td>Function: implode()</td><td>0.046550</td></tr> </table>
Output for 5.6.19
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.082532</td></tr> <tr><td>Dot Concatenation</td><td>0.054498</td></tr> <tr><td>In-string Replacement</td><td>0.061082</td></tr> <tr><td>Complex In-string Replacement</td><td>0.048665</td></tr> <tr><td>Function: sprintf()</td><td>0.072659</td></tr> <tr><td>Function: implode()</td><td>0.048073</td></tr> </table>
Output for 5.6.18
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.093873</td></tr> <tr><td>Dot Concatenation</td><td>0.066283</td></tr> <tr><td>In-string Replacement</td><td>0.061232</td></tr> <tr><td>Complex In-string Replacement</td><td>0.065598</td></tr> <tr><td>Function: sprintf()</td><td>0.072688</td></tr> <tr><td>Function: implode()</td><td>0.048233</td></tr> </table>
Output for 5.6.17
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.083703</td></tr> <tr><td>Dot Concatenation</td><td>0.057650</td></tr> <tr><td>In-string Replacement</td><td>0.045738</td></tr> <tr><td>Complex In-string Replacement</td><td>0.048180</td></tr> <tr><td>Function: sprintf()</td><td>0.070360</td></tr> <tr><td>Function: implode()</td><td>0.046442</td></tr> </table>
Output for 5.6.16
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.072002</td></tr> <tr><td>Dot Concatenation</td><td>0.053758</td></tr> <tr><td>In-string Replacement</td><td>0.044792</td></tr> <tr><td>Complex In-string Replacement</td><td>0.045947</td></tr> <tr><td>Function: sprintf()</td><td>0.069912</td></tr> <tr><td>Function: implode()</td><td>0.047953</td></tr> </table>
Output for 5.6.15
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.088298</td></tr> <tr><td>Dot Concatenation</td><td>0.056208</td></tr> <tr><td>In-string Replacement</td><td>0.046512</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047301</td></tr> <tr><td>Function: sprintf()</td><td>0.071535</td></tr> <tr><td>Function: implode()</td><td>0.048366</td></tr> </table>
Output for 5.6.14
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.073448</td></tr> <tr><td>Dot Concatenation</td><td>0.056231</td></tr> <tr><td>In-string Replacement</td><td>0.046724</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047527</td></tr> <tr><td>Function: sprintf()</td><td>0.071877</td></tr> <tr><td>Function: implode()</td><td>0.046912</td></tr> </table>
Output for 5.6.13
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.083266</td></tr> <tr><td>Dot Concatenation</td><td>0.061911</td></tr> <tr><td>In-string Replacement</td><td>0.053301</td></tr> <tr><td>Complex In-string Replacement</td><td>0.052393</td></tr> <tr><td>Function: sprintf()</td><td>0.084373</td></tr> <tr><td>Function: implode()</td><td>0.053051</td></tr> </table>
Output for 5.6.12
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.082567</td></tr> <tr><td>Dot Concatenation</td><td>0.059514</td></tr> <tr><td>In-string Replacement</td><td>0.052917</td></tr> <tr><td>Complex In-string Replacement</td><td>0.050581</td></tr> <tr><td>Function: sprintf()</td><td>0.081055</td></tr> <tr><td>Function: implode()</td><td>0.053525</td></tr> </table>
Output for 5.6.11
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.085988</td></tr> <tr><td>Dot Concatenation</td><td>0.060739</td></tr> <tr><td>In-string Replacement</td><td>0.053542</td></tr> <tr><td>Complex In-string Replacement</td><td>0.052505</td></tr> <tr><td>Function: sprintf()</td><td>0.081804</td></tr> <tr><td>Function: implode()</td><td>0.055232</td></tr> </table>
Output for 5.6.10
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.070877</td></tr> <tr><td>Dot Concatenation</td><td>0.052904</td></tr> <tr><td>In-string Replacement</td><td>0.046602</td></tr> <tr><td>Complex In-string Replacement</td><td>0.057836</td></tr> <tr><td>Function: sprintf()</td><td>0.081024</td></tr> <tr><td>Function: implode()</td><td>0.047118</td></tr> </table>
Output for 5.6.9
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.074739</td></tr> <tr><td>Dot Concatenation</td><td>0.057243</td></tr> <tr><td>In-string Replacement</td><td>0.047185</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047820</td></tr> <tr><td>Function: sprintf()</td><td>0.085271</td></tr> <tr><td>Function: implode()</td><td>0.046568</td></tr> </table>
Output for 5.6.8
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.073244</td></tr> <tr><td>Dot Concatenation</td><td>0.053503</td></tr> <tr><td>In-string Replacement</td><td>0.051286</td></tr> <tr><td>Complex In-string Replacement</td><td>0.044910</td></tr> <tr><td>Function: sprintf()</td><td>0.069802</td></tr> <tr><td>Function: implode()</td><td>0.046908</td></tr> </table>
Output for 5.6.7
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.077338</td></tr> <tr><td>Dot Concatenation</td><td>0.051577</td></tr> <tr><td>In-string Replacement</td><td>0.045994</td></tr> <tr><td>Complex In-string Replacement</td><td>0.046425</td></tr> <tr><td>Function: sprintf()</td><td>0.069981</td></tr> <tr><td>Function: implode()</td><td>0.047943</td></tr> </table>
Output for 5.6.6
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.073906</td></tr> <tr><td>Dot Concatenation</td><td>0.054030</td></tr> <tr><td>In-string Replacement</td><td>0.045529</td></tr> <tr><td>Complex In-string Replacement</td><td>0.045936</td></tr> <tr><td>Function: sprintf()</td><td>0.071049</td></tr> <tr><td>Function: implode()</td><td>0.047126</td></tr> </table>
Output for 5.6.5
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.070961</td></tr> <tr><td>Dot Concatenation</td><td>0.053668</td></tr> <tr><td>In-string Replacement</td><td>0.046434</td></tr> <tr><td>Complex In-string Replacement</td><td>0.046365</td></tr> <tr><td>Function: sprintf()</td><td>0.069352</td></tr> <tr><td>Function: implode()</td><td>0.047166</td></tr> </table>
Output for 5.6.4
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.074106</td></tr> <tr><td>Dot Concatenation</td><td>0.053534</td></tr> <tr><td>In-string Replacement</td><td>0.046702</td></tr> <tr><td>Complex In-string Replacement</td><td>0.046754</td></tr> <tr><td>Function: sprintf()</td><td>0.072639</td></tr> <tr><td>Function: implode()</td><td>0.048400</td></tr> </table>
Output for 5.6.3
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.091089</td></tr> <tr><td>Dot Concatenation</td><td>0.060528</td></tr> <tr><td>In-string Replacement</td><td>0.052668</td></tr> <tr><td>Complex In-string Replacement</td><td>0.055788</td></tr> <tr><td>Function: sprintf()</td><td>0.083368</td></tr> <tr><td>Function: implode()</td><td>0.051751</td></tr> </table>
Output for 5.6.2
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.071591</td></tr> <tr><td>Dot Concatenation</td><td>0.054068</td></tr> <tr><td>In-string Replacement</td><td>0.045704</td></tr> <tr><td>Complex In-string Replacement</td><td>0.046874</td></tr> <tr><td>Function: sprintf()</td><td>0.070524</td></tr> <tr><td>Function: implode()</td><td>0.047165</td></tr> </table>
Output for 5.6.1
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.073891</td></tr> <tr><td>Dot Concatenation</td><td>0.053250</td></tr> <tr><td>In-string Replacement</td><td>0.046525</td></tr> <tr><td>Complex In-string Replacement</td><td>0.052101</td></tr> <tr><td>Function: sprintf()</td><td>0.083865</td></tr> <tr><td>Function: implode()</td><td>0.054436</td></tr> </table>
Output for 5.6.0
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.081787</td></tr> <tr><td>Dot Concatenation</td><td>0.059149</td></tr> <tr><td>In-string Replacement</td><td>0.050617</td></tr> <tr><td>Complex In-string Replacement</td><td>0.050472</td></tr> <tr><td>Function: sprintf()</td><td>0.080867</td></tr> <tr><td>Function: implode()</td><td>0.054806</td></tr> </table>
Output for 5.5.38
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.078878</td></tr> <tr><td>Dot Concatenation</td><td>0.056961</td></tr> <tr><td>In-string Replacement</td><td>0.049770</td></tr> <tr><td>Complex In-string Replacement</td><td>0.057873</td></tr> <tr><td>Function: sprintf()</td><td>0.092310</td></tr> <tr><td>Function: implode()</td><td>0.048437</td></tr> </table>
Output for 5.5.37
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.075279</td></tr> <tr><td>Dot Concatenation</td><td>0.059942</td></tr> <tr><td>In-string Replacement</td><td>0.051146</td></tr> <tr><td>Complex In-string Replacement</td><td>0.046616</td></tr> <tr><td>Function: sprintf()</td><td>0.077230</td></tr> <tr><td>Function: implode()</td><td>0.047986</td></tr> </table>
Output for 5.5.36
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.074258</td></tr> <tr><td>Dot Concatenation</td><td>0.056512</td></tr> <tr><td>In-string Replacement</td><td>0.049341</td></tr> <tr><td>Complex In-string Replacement</td><td>0.049462</td></tr> <tr><td>Function: sprintf()</td><td>0.074705</td></tr> <tr><td>Function: implode()</td><td>0.047848</td></tr> </table>
Output for 5.5.35
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.076571</td></tr> <tr><td>Dot Concatenation</td><td>0.057593</td></tr> <tr><td>In-string Replacement</td><td>0.049606</td></tr> <tr><td>Complex In-string Replacement</td><td>0.049322</td></tr> <tr><td>Function: sprintf()</td><td>0.076993</td></tr> <tr><td>Function: implode()</td><td>0.048267</td></tr> </table>
Output for 5.5.34
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.076946</td></tr> <tr><td>Dot Concatenation</td><td>0.057643</td></tr> <tr><td>In-string Replacement</td><td>0.049904</td></tr> <tr><td>Complex In-string Replacement</td><td>0.048669</td></tr> <tr><td>Function: sprintf()</td><td>0.075543</td></tr> <tr><td>Function: implode()</td><td>0.047733</td></tr> </table>
Output for 5.5.33
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.076179</td></tr> <tr><td>Dot Concatenation</td><td>0.056460</td></tr> <tr><td>In-string Replacement</td><td>0.049700</td></tr> <tr><td>Complex In-string Replacement</td><td>0.049561</td></tr> <tr><td>Function: sprintf()</td><td>0.076350</td></tr> <tr><td>Function: implode()</td><td>0.048205</td></tr> </table>
Output for 5.5.32
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.079952</td></tr> <tr><td>Dot Concatenation</td><td>0.056941</td></tr> <tr><td>In-string Replacement</td><td>0.049155</td></tr> <tr><td>Complex In-string Replacement</td><td>0.048757</td></tr> <tr><td>Function: sprintf()</td><td>0.075089</td></tr> <tr><td>Function: implode()</td><td>0.047776</td></tr> </table>
Output for 5.5.31
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.073911</td></tr> <tr><td>Dot Concatenation</td><td>0.053955</td></tr> <tr><td>In-string Replacement</td><td>0.049848</td></tr> <tr><td>Complex In-string Replacement</td><td>0.049053</td></tr> <tr><td>Function: sprintf()</td><td>0.076492</td></tr> <tr><td>Function: implode()</td><td>0.048005</td></tr> </table>
Output for 5.5.30
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.071457</td></tr> <tr><td>Dot Concatenation</td><td>0.052694</td></tr> <tr><td>In-string Replacement</td><td>0.051133</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047944</td></tr> <tr><td>Function: sprintf()</td><td>0.098405</td></tr> <tr><td>Function: implode()</td><td>0.052826</td></tr> </table>
Output for 5.5.29
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.097086</td></tr> <tr><td>Dot Concatenation</td><td>0.055382</td></tr> <tr><td>In-string Replacement</td><td>0.046674</td></tr> <tr><td>Complex In-string Replacement</td><td>0.049217</td></tr> <tr><td>Function: sprintf()</td><td>0.076328</td></tr> <tr><td>Function: implode()</td><td>0.047770</td></tr> </table>
Output for 5.5.28
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.076879</td></tr> <tr><td>Dot Concatenation</td><td>0.053477</td></tr> <tr><td>In-string Replacement</td><td>0.048418</td></tr> <tr><td>Complex In-string Replacement</td><td>0.049082</td></tr> <tr><td>Function: sprintf()</td><td>0.076613</td></tr> <tr><td>Function: implode()</td><td>0.048485</td></tr> </table>
Output for 5.5.27
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.071833</td></tr> <tr><td>Dot Concatenation</td><td>0.054104</td></tr> <tr><td>In-string Replacement</td><td>0.048934</td></tr> <tr><td>Complex In-string Replacement</td><td>0.048561</td></tr> <tr><td>Function: sprintf()</td><td>0.075153</td></tr> <tr><td>Function: implode()</td><td>0.048492</td></tr> </table>
Output for 5.5.26
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.071631</td></tr> <tr><td>Dot Concatenation</td><td>0.054674</td></tr> <tr><td>In-string Replacement</td><td>0.046723</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047387</td></tr> <tr><td>Function: sprintf()</td><td>0.074195</td></tr> <tr><td>Function: implode()</td><td>0.047966</td></tr> </table>
Output for 5.5.25
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.082527</td></tr> <tr><td>Dot Concatenation</td><td>0.060150</td></tr> <tr><td>In-string Replacement</td><td>0.050758</td></tr> <tr><td>Complex In-string Replacement</td><td>0.050907</td></tr> <tr><td>Function: sprintf()</td><td>0.086083</td></tr> <tr><td>Function: implode()</td><td>0.054322</td></tr> </table>
Output for 5.5.24
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.073586</td></tr> <tr><td>Dot Concatenation</td><td>0.051119</td></tr> <tr><td>In-string Replacement</td><td>0.047277</td></tr> <tr><td>Complex In-string Replacement</td><td>0.048582</td></tr> <tr><td>Function: sprintf()</td><td>0.076066</td></tr> <tr><td>Function: implode()</td><td>0.047841</td></tr> </table>
Output for 5.5.23
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.070262</td></tr> <tr><td>Dot Concatenation</td><td>0.050840</td></tr> <tr><td>In-string Replacement</td><td>0.046882</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047423</td></tr> <tr><td>Function: sprintf()</td><td>0.074171</td></tr> <tr><td>Function: implode()</td><td>0.047884</td></tr> </table>
Output for 5.5.22
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.082132</td></tr> <tr><td>Dot Concatenation</td><td>0.057451</td></tr> <tr><td>In-string Replacement</td><td>0.053460</td></tr> <tr><td>Complex In-string Replacement</td><td>0.054103</td></tr> <tr><td>Function: sprintf()</td><td>0.085193</td></tr> <tr><td>Function: implode()</td><td>0.054454</td></tr> </table>
Output for 5.5.21
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.075616</td></tr> <tr><td>Dot Concatenation</td><td>0.052028</td></tr> <tr><td>In-string Replacement</td><td>0.049092</td></tr> <tr><td>Complex In-string Replacement</td><td>0.049260</td></tr> <tr><td>Function: sprintf()</td><td>0.082328</td></tr> <tr><td>Function: implode()</td><td>0.056637</td></tr> </table>
Output for 5.5.20
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.074358</td></tr> <tr><td>Dot Concatenation</td><td>0.052105</td></tr> <tr><td>In-string Replacement</td><td>0.047851</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047347</td></tr> <tr><td>Function: sprintf()</td><td>0.074864</td></tr> <tr><td>Function: implode()</td><td>0.048330</td></tr> </table>
Output for 5.5.19
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.074046</td></tr> <tr><td>Dot Concatenation</td><td>0.053437</td></tr> <tr><td>In-string Replacement</td><td>0.048784</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047767</td></tr> <tr><td>Function: sprintf()</td><td>0.075537</td></tr> <tr><td>Function: implode()</td><td>0.047530</td></tr> </table>
Output for 5.5.18
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.073524</td></tr> <tr><td>Dot Concatenation</td><td>0.054238</td></tr> <tr><td>In-string Replacement</td><td>0.048379</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047437</td></tr> <tr><td>Function: sprintf()</td><td>0.074000</td></tr> <tr><td>Function: implode()</td><td>0.049545</td></tr> </table>
Output for 5.5.17
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.074936</td></tr> <tr><td>Dot Concatenation</td><td>0.055185</td></tr> <tr><td>In-string Replacement</td><td>0.048905</td></tr> <tr><td>Complex In-string Replacement</td><td>0.049104</td></tr> <tr><td>Function: sprintf()</td><td>0.075825</td></tr> <tr><td>Function: implode()</td><td>0.050501</td></tr> </table>
Output for 5.5.16
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.097588</td></tr> <tr><td>Dot Concatenation</td><td>0.055274</td></tr> <tr><td>In-string Replacement</td><td>0.047181</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047468</td></tr> <tr><td>Function: sprintf()</td><td>0.086296</td></tr> <tr><td>Function: implode()</td><td>0.048067</td></tr> </table>
Output for 5.5.15
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.088912</td></tr> <tr><td>Dot Concatenation</td><td>0.053834</td></tr> <tr><td>In-string Replacement</td><td>0.049122</td></tr> <tr><td>Complex In-string Replacement</td><td>0.048746</td></tr> <tr><td>Function: sprintf()</td><td>0.102639</td></tr> <tr><td>Function: implode()</td><td>0.062238</td></tr> </table>
Output for 5.5.14
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.071638</td></tr> <tr><td>Dot Concatenation</td><td>0.052093</td></tr> <tr><td>In-string Replacement</td><td>0.050971</td></tr> <tr><td>Complex In-string Replacement</td><td>0.049213</td></tr> <tr><td>Function: sprintf()</td><td>0.076328</td></tr> <tr><td>Function: implode()</td><td>0.056783</td></tr> </table>
Output for 5.5.13
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.077200</td></tr> <tr><td>Dot Concatenation</td><td>0.054629</td></tr> <tr><td>In-string Replacement</td><td>0.049140</td></tr> <tr><td>Complex In-string Replacement</td><td>0.048562</td></tr> <tr><td>Function: sprintf()</td><td>0.074211</td></tr> <tr><td>Function: implode()</td><td>0.048349</td></tr> </table>
Output for 5.5.12
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.084375</td></tr> <tr><td>Dot Concatenation</td><td>0.053058</td></tr> <tr><td>In-string Replacement</td><td>0.049721</td></tr> <tr><td>Complex In-string Replacement</td><td>0.048581</td></tr> <tr><td>Function: sprintf()</td><td>0.076637</td></tr> <tr><td>Function: implode()</td><td>0.059918</td></tr> </table>
Output for 5.5.11
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.075332</td></tr> <tr><td>Dot Concatenation</td><td>0.056405</td></tr> <tr><td>In-string Replacement</td><td>0.047317</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047035</td></tr> <tr><td>Function: sprintf()</td><td>0.075184</td></tr> <tr><td>Function: implode()</td><td>0.048198</td></tr> </table>
Output for 5.5.10
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.072344</td></tr> <tr><td>Dot Concatenation</td><td>0.061210</td></tr> <tr><td>In-string Replacement</td><td>0.061800</td></tr> <tr><td>Complex In-string Replacement</td><td>0.052786</td></tr> <tr><td>Function: sprintf()</td><td>0.096898</td></tr> <tr><td>Function: implode()</td><td>0.062004</td></tr> </table>
Output for 5.5.9
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.078102</td></tr> <tr><td>Dot Concatenation</td><td>0.054117</td></tr> <tr><td>In-string Replacement</td><td>0.059148</td></tr> <tr><td>Complex In-string Replacement</td><td>0.060642</td></tr> <tr><td>Function: sprintf()</td><td>0.073445</td></tr> <tr><td>Function: implode()</td><td>0.048261</td></tr> </table>
Output for 5.5.8
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.081387</td></tr> <tr><td>Dot Concatenation</td><td>0.059402</td></tr> <tr><td>In-string Replacement</td><td>0.052040</td></tr> <tr><td>Complex In-string Replacement</td><td>0.054615</td></tr> <tr><td>Function: sprintf()</td><td>0.088373</td></tr> <tr><td>Function: implode()</td><td>0.056582</td></tr> </table>
Output for 5.5.7
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.070419</td></tr> <tr><td>Dot Concatenation</td><td>0.052410</td></tr> <tr><td>In-string Replacement</td><td>0.046477</td></tr> <tr><td>Complex In-string Replacement</td><td>0.046290</td></tr> <tr><td>Function: sprintf()</td><td>0.073794</td></tr> <tr><td>Function: implode()</td><td>0.047846</td></tr> </table>
Output for 5.5.6
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.071340</td></tr> <tr><td>Dot Concatenation</td><td>0.052309</td></tr> <tr><td>In-string Replacement</td><td>0.046365</td></tr> <tr><td>Complex In-string Replacement</td><td>0.046228</td></tr> <tr><td>Function: sprintf()</td><td>0.077127</td></tr> <tr><td>Function: implode()</td><td>0.048675</td></tr> </table>
Output for 5.5.5
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.072107</td></tr> <tr><td>Dot Concatenation</td><td>0.053164</td></tr> <tr><td>In-string Replacement</td><td>0.046918</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047613</td></tr> <tr><td>Function: sprintf()</td><td>0.074826</td></tr> <tr><td>Function: implode()</td><td>0.049367</td></tr> </table>
Output for 5.5.4
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.071762</td></tr> <tr><td>Dot Concatenation</td><td>0.054611</td></tr> <tr><td>In-string Replacement</td><td>0.048037</td></tr> <tr><td>Complex In-string Replacement</td><td>0.048064</td></tr> <tr><td>Function: sprintf()</td><td>0.075190</td></tr> <tr><td>Function: implode()</td><td>0.047833</td></tr> </table>
Output for 5.5.3
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.091315</td></tr> <tr><td>Dot Concatenation</td><td>0.054184</td></tr> <tr><td>In-string Replacement</td><td>0.046758</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047318</td></tr> <tr><td>Function: sprintf()</td><td>0.076006</td></tr> <tr><td>Function: implode()</td><td>0.050933</td></tr> </table>
Output for 5.5.2
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.105491</td></tr> <tr><td>Dot Concatenation</td><td>0.064319</td></tr> <tr><td>In-string Replacement</td><td>0.047655</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047561</td></tr> <tr><td>Function: sprintf()</td><td>0.073670</td></tr> <tr><td>Function: implode()</td><td>0.049018</td></tr> </table>
Output for 5.5.1
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.086515</td></tr> <tr><td>Dot Concatenation</td><td>0.076851</td></tr> <tr><td>In-string Replacement</td><td>0.062299</td></tr> <tr><td>Complex In-string Replacement</td><td>0.049679</td></tr> <tr><td>Function: sprintf()</td><td>0.075453</td></tr> <tr><td>Function: implode()</td><td>0.060310</td></tr> </table>
Output for 5.5.0
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.077072</td></tr> <tr><td>Dot Concatenation</td><td>0.061337</td></tr> <tr><td>In-string Replacement</td><td>0.047846</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047660</td></tr> <tr><td>Function: sprintf()</td><td>0.106265</td></tr> <tr><td>Function: implode()</td><td>0.073709</td></tr> </table>
Output for 5.4.45
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.074066</td></tr> <tr><td>Dot Concatenation</td><td>0.051451</td></tr> <tr><td>In-string Replacement</td><td>0.046920</td></tr> <tr><td>Complex In-string Replacement</td><td>0.048963</td></tr> <tr><td>Function: sprintf()</td><td>0.074231</td></tr> <tr><td>Function: implode()</td><td>0.046906</td></tr> </table>
Output for 5.4.44
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.080167</td></tr> <tr><td>Dot Concatenation</td><td>0.053541</td></tr> <tr><td>In-string Replacement</td><td>0.048411</td></tr> <tr><td>Complex In-string Replacement</td><td>0.048072</td></tr> <tr><td>Function: sprintf()</td><td>0.098661</td></tr> <tr><td>Function: implode()</td><td>0.048245</td></tr> </table>
Output for 5.4.43
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.088604</td></tr> <tr><td>Dot Concatenation</td><td>0.053898</td></tr> <tr><td>In-string Replacement</td><td>0.047682</td></tr> <tr><td>Complex In-string Replacement</td><td>0.048160</td></tr> <tr><td>Function: sprintf()</td><td>0.073523</td></tr> <tr><td>Function: implode()</td><td>0.047263</td></tr> </table>
Output for 5.4.42
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.071143</td></tr> <tr><td>Dot Concatenation</td><td>0.053094</td></tr> <tr><td>In-string Replacement</td><td>0.046155</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047010</td></tr> <tr><td>Function: sprintf()</td><td>0.073341</td></tr> <tr><td>Function: implode()</td><td>0.047637</td></tr> </table>
Output for 5.4.41
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.095511</td></tr> <tr><td>Dot Concatenation</td><td>0.072171</td></tr> <tr><td>In-string Replacement</td><td>0.047313</td></tr> <tr><td>Complex In-string Replacement</td><td>0.049926</td></tr> <tr><td>Function: sprintf()</td><td>0.074108</td></tr> <tr><td>Function: implode()</td><td>0.046921</td></tr> </table>
Output for 5.4.40
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.092829</td></tr> <tr><td>Dot Concatenation</td><td>0.057970</td></tr> <tr><td>In-string Replacement</td><td>0.053540</td></tr> <tr><td>Complex In-string Replacement</td><td>0.053755</td></tr> <tr><td>Function: sprintf()</td><td>0.088027</td></tr> <tr><td>Function: implode()</td><td>0.053731</td></tr> </table>
Output for 5.4.39
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.085383</td></tr> <tr><td>Dot Concatenation</td><td>0.053522</td></tr> <tr><td>In-string Replacement</td><td>0.049539</td></tr> <tr><td>Complex In-string Replacement</td><td>0.048214</td></tr> <tr><td>Function: sprintf()</td><td>0.077393</td></tr> <tr><td>Function: implode()</td><td>0.048379</td></tr> </table>
Output for 5.4.38
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.071481</td></tr> <tr><td>Dot Concatenation</td><td>0.050569</td></tr> <tr><td>In-string Replacement</td><td>0.047096</td></tr> <tr><td>Complex In-string Replacement</td><td>0.045786</td></tr> <tr><td>Function: sprintf()</td><td>0.073360</td></tr> <tr><td>Function: implode()</td><td>0.046499</td></tr> </table>
Output for 5.4.37
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.073287</td></tr> <tr><td>Dot Concatenation</td><td>0.052150</td></tr> <tr><td>In-string Replacement</td><td>0.049807</td></tr> <tr><td>Complex In-string Replacement</td><td>0.048510</td></tr> <tr><td>Function: sprintf()</td><td>0.078026</td></tr> <tr><td>Function: implode()</td><td>0.050447</td></tr> </table>
Output for 5.4.36
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.070810</td></tr> <tr><td>Dot Concatenation</td><td>0.050103</td></tr> <tr><td>In-string Replacement</td><td>0.045422</td></tr> <tr><td>Complex In-string Replacement</td><td>0.045965</td></tr> <tr><td>Function: sprintf()</td><td>0.073790</td></tr> <tr><td>Function: implode()</td><td>0.046867</td></tr> </table>
Output for 5.4.35
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.082019</td></tr> <tr><td>Dot Concatenation</td><td>0.050590</td></tr> <tr><td>In-string Replacement</td><td>0.047836</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047714</td></tr> <tr><td>Function: sprintf()</td><td>0.073773</td></tr> <tr><td>Function: implode()</td><td>0.046881</td></tr> </table>
Output for 5.4.34
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.084562</td></tr> <tr><td>Dot Concatenation</td><td>0.051699</td></tr> <tr><td>In-string Replacement</td><td>0.047793</td></tr> <tr><td>Complex In-string Replacement</td><td>0.061070</td></tr> <tr><td>Function: sprintf()</td><td>0.075378</td></tr> <tr><td>Function: implode()</td><td>0.048568</td></tr> </table>
Output for 5.4.33
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.073282</td></tr> <tr><td>Dot Concatenation</td><td>0.050431</td></tr> <tr><td>In-string Replacement</td><td>0.048576</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047518</td></tr> <tr><td>Function: sprintf()</td><td>0.073417</td></tr> <tr><td>Function: implode()</td><td>0.047533</td></tr> </table>
Output for 5.4.32
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.082431</td></tr> <tr><td>Dot Concatenation</td><td>0.058593</td></tr> <tr><td>In-string Replacement</td><td>0.052278</td></tr> <tr><td>Complex In-string Replacement</td><td>0.052569</td></tr> <tr><td>Function: sprintf()</td><td>0.086646</td></tr> <tr><td>Function: implode()</td><td>0.053807</td></tr> </table>
Output for 5.4.31
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.073856</td></tr> <tr><td>Dot Concatenation</td><td>0.057151</td></tr> <tr><td>In-string Replacement</td><td>0.051018</td></tr> <tr><td>Complex In-string Replacement</td><td>0.052469</td></tr> <tr><td>Function: sprintf()</td><td>0.078410</td></tr> <tr><td>Function: implode()</td><td>0.048439</td></tr> </table>
Output for 5.4.30
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.074181</td></tr> <tr><td>Dot Concatenation</td><td>0.053532</td></tr> <tr><td>In-string Replacement</td><td>0.046497</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047361</td></tr> <tr><td>Function: sprintf()</td><td>0.078384</td></tr> <tr><td>Function: implode()</td><td>0.047657</td></tr> </table>
Output for 5.4.29
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.096549</td></tr> <tr><td>Dot Concatenation</td><td>0.055311</td></tr> <tr><td>In-string Replacement</td><td>0.049964</td></tr> <tr><td>Complex In-string Replacement</td><td>0.048061</td></tr> <tr><td>Function: sprintf()</td><td>0.082339</td></tr> <tr><td>Function: implode()</td><td>0.048978</td></tr> </table>
Output for 5.4.28
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.088097</td></tr> <tr><td>Dot Concatenation</td><td>0.059836</td></tr> <tr><td>In-string Replacement</td><td>0.053114</td></tr> <tr><td>Complex In-string Replacement</td><td>0.054688</td></tr> <tr><td>Function: sprintf()</td><td>0.087467</td></tr> <tr><td>Function: implode()</td><td>0.053706</td></tr> </table>
Output for 5.4.27
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.085524</td></tr> <tr><td>Dot Concatenation</td><td>0.069099</td></tr> <tr><td>In-string Replacement</td><td>0.050684</td></tr> <tr><td>Complex In-string Replacement</td><td>0.049568</td></tr> <tr><td>Function: sprintf()</td><td>0.080624</td></tr> <tr><td>Function: implode()</td><td>0.049434</td></tr> </table>
Output for 5.4.26
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.072582</td></tr> <tr><td>Dot Concatenation</td><td>0.052591</td></tr> <tr><td>In-string Replacement</td><td>0.049985</td></tr> <tr><td>Complex In-string Replacement</td><td>0.049540</td></tr> <tr><td>Function: sprintf()</td><td>0.089898</td></tr> <tr><td>Function: implode()</td><td>0.049401</td></tr> </table>
Output for 5.4.25
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.090302</td></tr> <tr><td>Dot Concatenation</td><td>0.059641</td></tr> <tr><td>In-string Replacement</td><td>0.055659</td></tr> <tr><td>Complex In-string Replacement</td><td>0.049959</td></tr> <tr><td>Function: sprintf()</td><td>0.078115</td></tr> <tr><td>Function: implode()</td><td>0.049590</td></tr> </table>
Output for 5.4.24
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.088298</td></tr> <tr><td>Dot Concatenation</td><td>0.057474</td></tr> <tr><td>In-string Replacement</td><td>0.051791</td></tr> <tr><td>Complex In-string Replacement</td><td>0.052464</td></tr> <tr><td>Function: sprintf()</td><td>0.087824</td></tr> <tr><td>Function: implode()</td><td>0.053992</td></tr> </table>
Output for 5.4.23
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.072733</td></tr> <tr><td>Dot Concatenation</td><td>0.052611</td></tr> <tr><td>In-string Replacement</td><td>0.050011</td></tr> <tr><td>Complex In-string Replacement</td><td>0.048401</td></tr> <tr><td>Function: sprintf()</td><td>0.077040</td></tr> <tr><td>Function: implode()</td><td>0.051903</td></tr> </table>
Output for 5.4.22
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.072201</td></tr> <tr><td>Dot Concatenation</td><td>0.055662</td></tr> <tr><td>In-string Replacement</td><td>0.049774</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047684</td></tr> <tr><td>Function: sprintf()</td><td>0.076476</td></tr> <tr><td>Function: implode()</td><td>0.048229</td></tr> </table>
Output for 5.4.21
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.084283</td></tr> <tr><td>Dot Concatenation</td><td>0.056571</td></tr> <tr><td>In-string Replacement</td><td>0.053035</td></tr> <tr><td>Complex In-string Replacement</td><td>0.048094</td></tr> <tr><td>Function: sprintf()</td><td>0.077779</td></tr> <tr><td>Function: implode()</td><td>0.047533</td></tr> </table>
Output for 5.4.20
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.073593</td></tr> <tr><td>Dot Concatenation</td><td>0.055081</td></tr> <tr><td>In-string Replacement</td><td>0.049868</td></tr> <tr><td>Complex In-string Replacement</td><td>0.050632</td></tr> <tr><td>Function: sprintf()</td><td>0.076430</td></tr> <tr><td>Function: implode()</td><td>0.049081</td></tr> </table>
Output for 5.4.19
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.070686</td></tr> <tr><td>Dot Concatenation</td><td>0.052022</td></tr> <tr><td>In-string Replacement</td><td>0.047420</td></tr> <tr><td>Complex In-string Replacement</td><td>0.046849</td></tr> <tr><td>Function: sprintf()</td><td>0.074326</td></tr> <tr><td>Function: implode()</td><td>0.046855</td></tr> </table>
Output for 5.4.18
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.086489</td></tr> <tr><td>Dot Concatenation</td><td>0.065954</td></tr> <tr><td>In-string Replacement</td><td>0.075368</td></tr> <tr><td>Complex In-string Replacement</td><td>0.048043</td></tr> <tr><td>Function: sprintf()</td><td>0.076121</td></tr> <tr><td>Function: implode()</td><td>0.047117</td></tr> </table>
Output for 5.4.17
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.083046</td></tr> <tr><td>Dot Concatenation</td><td>0.058875</td></tr> <tr><td>In-string Replacement</td><td>0.054485</td></tr> <tr><td>Complex In-string Replacement</td><td>0.055061</td></tr> <tr><td>Function: sprintf()</td><td>0.087202</td></tr> <tr><td>Function: implode()</td><td>0.053969</td></tr> </table>
Output for 5.4.16
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.076385</td></tr> <tr><td>Dot Concatenation</td><td>0.054717</td></tr> <tr><td>In-string Replacement</td><td>0.048274</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047984</td></tr> <tr><td>Function: sprintf()</td><td>0.076585</td></tr> <tr><td>Function: implode()</td><td>0.048491</td></tr> </table>
Output for 5.4.15
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.107430</td></tr> <tr><td>Dot Concatenation</td><td>0.056114</td></tr> <tr><td>In-string Replacement</td><td>0.047181</td></tr> <tr><td>Complex In-string Replacement</td><td>0.049756</td></tr> <tr><td>Function: sprintf()</td><td>0.085535</td></tr> <tr><td>Function: implode()</td><td>0.059732</td></tr> </table>
Output for 5.4.14
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.073888</td></tr> <tr><td>Dot Concatenation</td><td>0.057808</td></tr> <tr><td>In-string Replacement</td><td>0.048607</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047574</td></tr> <tr><td>Function: sprintf()</td><td>0.074900</td></tr> <tr><td>Function: implode()</td><td>0.060394</td></tr> </table>
Output for 5.4.13
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.101574</td></tr> <tr><td>Dot Concatenation</td><td>0.053038</td></tr> <tr><td>In-string Replacement</td><td>0.050711</td></tr> <tr><td>Complex In-string Replacement</td><td>0.059194</td></tr> <tr><td>Function: sprintf()</td><td>0.080165</td></tr> <tr><td>Function: implode()</td><td>0.068248</td></tr> </table>
Output for 5.4.12
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.087163</td></tr> <tr><td>Dot Concatenation</td><td>0.050757</td></tr> <tr><td>In-string Replacement</td><td>0.048215</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047611</td></tr> <tr><td>Function: sprintf()</td><td>0.079809</td></tr> <tr><td>Function: implode()</td><td>0.047777</td></tr> </table>
Output for 5.4.11
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.094120</td></tr> <tr><td>Dot Concatenation</td><td>0.057437</td></tr> <tr><td>In-string Replacement</td><td>0.052958</td></tr> <tr><td>Complex In-string Replacement</td><td>0.052357</td></tr> <tr><td>Function: sprintf()</td><td>0.087984</td></tr> <tr><td>Function: implode()</td><td>0.056668</td></tr> </table>
Output for 5.4.10
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.084612</td></tr> <tr><td>Dot Concatenation</td><td>0.071074</td></tr> <tr><td>In-string Replacement</td><td>0.066180</td></tr> <tr><td>Complex In-string Replacement</td><td>0.067636</td></tr> <tr><td>Function: sprintf()</td><td>0.115181</td></tr> <tr><td>Function: implode()</td><td>0.058300</td></tr> </table>
Output for 5.4.9
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.105747</td></tr> <tr><td>Dot Concatenation</td><td>0.073978</td></tr> <tr><td>In-string Replacement</td><td>0.050520</td></tr> <tr><td>Complex In-string Replacement</td><td>0.051188</td></tr> <tr><td>Function: sprintf()</td><td>0.076326</td></tr> <tr><td>Function: implode()</td><td>0.048900</td></tr> </table>
Output for 5.4.8
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.106088</td></tr> <tr><td>Dot Concatenation</td><td>0.071982</td></tr> <tr><td>In-string Replacement</td><td>0.049670</td></tr> <tr><td>Complex In-string Replacement</td><td>0.050583</td></tr> <tr><td>Function: sprintf()</td><td>0.076809</td></tr> <tr><td>Function: implode()</td><td>0.056733</td></tr> </table>
Output for 5.4.7
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.081664</td></tr> <tr><td>Dot Concatenation</td><td>0.070886</td></tr> <tr><td>In-string Replacement</td><td>0.052827</td></tr> <tr><td>Complex In-string Replacement</td><td>0.053255</td></tr> <tr><td>Function: sprintf()</td><td>0.100295</td></tr> <tr><td>Function: implode()</td><td>0.054998</td></tr> </table>
Output for 5.4.6
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.089185</td></tr> <tr><td>Dot Concatenation</td><td>0.054885</td></tr> <tr><td>In-string Replacement</td><td>0.047590</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047383</td></tr> <tr><td>Function: sprintf()</td><td>0.077119</td></tr> <tr><td>Function: implode()</td><td>0.050432</td></tr> </table>
Output for 5.4.5
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.109855</td></tr> <tr><td>Dot Concatenation</td><td>0.076027</td></tr> <tr><td>In-string Replacement</td><td>0.069007</td></tr> <tr><td>Complex In-string Replacement</td><td>0.049361</td></tr> <tr><td>Function: sprintf()</td><td>0.086505</td></tr> <tr><td>Function: implode()</td><td>0.061549</td></tr> </table>
Output for 5.4.4
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.082192</td></tr> <tr><td>Dot Concatenation</td><td>0.056114</td></tr> <tr><td>In-string Replacement</td><td>0.051630</td></tr> <tr><td>Complex In-string Replacement</td><td>0.056265</td></tr> <tr><td>Function: sprintf()</td><td>0.097738</td></tr> <tr><td>Function: implode()</td><td>0.053026</td></tr> </table>
Output for 5.4.3
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.089634</td></tr> <tr><td>Dot Concatenation</td><td>0.051118</td></tr> <tr><td>In-string Replacement</td><td>0.046371</td></tr> <tr><td>Complex In-string Replacement</td><td>0.046790</td></tr> <tr><td>Function: sprintf()</td><td>0.077431</td></tr> <tr><td>Function: implode()</td><td>0.047727</td></tr> </table>
Output for 5.4.2
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.081511</td></tr> <tr><td>Dot Concatenation</td><td>0.050747</td></tr> <tr><td>In-string Replacement</td><td>0.045229</td></tr> <tr><td>Complex In-string Replacement</td><td>0.045911</td></tr> <tr><td>Function: sprintf()</td><td>0.079332</td></tr> <tr><td>Function: implode()</td><td>0.047156</td></tr> </table>
Output for 5.4.1
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.084153</td></tr> <tr><td>Dot Concatenation</td><td>0.057294</td></tr> <tr><td>In-string Replacement</td><td>0.050932</td></tr> <tr><td>Complex In-string Replacement</td><td>0.064018</td></tr> <tr><td>Function: sprintf()</td><td>0.090352</td></tr> <tr><td>Function: implode()</td><td>0.055732</td></tr> </table>
Output for 5.4.0
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.073184</td></tr> <tr><td>Dot Concatenation</td><td>0.065582</td></tr> <tr><td>In-string Replacement</td><td>0.064966</td></tr> <tr><td>Complex In-string Replacement</td><td>0.066671</td></tr> <tr><td>Function: sprintf()</td><td>0.097586</td></tr> <tr><td>Function: implode()</td><td>0.048773</td></tr> </table>
Output for 5.3.29
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.079514</td></tr> <tr><td>Dot Concatenation</td><td>0.055985</td></tr> <tr><td>In-string Replacement</td><td>0.048144</td></tr> <tr><td>Complex In-string Replacement</td><td>0.053298</td></tr> <tr><td>Function: sprintf()</td><td>0.097774</td></tr> <tr><td>Function: implode()</td><td>0.070210</td></tr> </table>
Output for 5.3.28
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.076692</td></tr> <tr><td>Dot Concatenation</td><td>0.056176</td></tr> <tr><td>In-string Replacement</td><td>0.049406</td></tr> <tr><td>Complex In-string Replacement</td><td>0.053108</td></tr> <tr><td>Function: sprintf()</td><td>0.110897</td></tr> <tr><td>Function: implode()</td><td>0.057343</td></tr> </table>
Output for 5.3.27
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.089028</td></tr> <tr><td>Dot Concatenation</td><td>0.057070</td></tr> <tr><td>In-string Replacement</td><td>0.056180</td></tr> <tr><td>Complex In-string Replacement</td><td>0.071377</td></tr> <tr><td>Function: sprintf()</td><td>0.100102</td></tr> <tr><td>Function: implode()</td><td>0.059261</td></tr> </table>
Output for 5.3.26
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.077864</td></tr> <tr><td>Dot Concatenation</td><td>0.053195</td></tr> <tr><td>In-string Replacement</td><td>0.049360</td></tr> <tr><td>Complex In-string Replacement</td><td>0.059265</td></tr> <tr><td>Function: sprintf()</td><td>0.106343</td></tr> <tr><td>Function: implode()</td><td>0.057865</td></tr> </table>
Output for 5.3.25
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.089947</td></tr> <tr><td>Dot Concatenation</td><td>0.061931</td></tr> <tr><td>In-string Replacement</td><td>0.053984</td></tr> <tr><td>Complex In-string Replacement</td><td>0.060740</td></tr> <tr><td>Function: sprintf()</td><td>0.113671</td></tr> <tr><td>Function: implode()</td><td>0.068004</td></tr> </table>
Output for 5.3.24
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.084245</td></tr> <tr><td>Dot Concatenation</td><td>0.064345</td></tr> <tr><td>In-string Replacement</td><td>0.069356</td></tr> <tr><td>Complex In-string Replacement</td><td>0.058320</td></tr> <tr><td>Function: sprintf()</td><td>0.102811</td></tr> <tr><td>Function: implode()</td><td>0.057649</td></tr> </table>
Output for 5.3.23
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.080368</td></tr> <tr><td>Dot Concatenation</td><td>0.056048</td></tr> <tr><td>In-string Replacement</td><td>0.050139</td></tr> <tr><td>Complex In-string Replacement</td><td>0.054891</td></tr> <tr><td>Function: sprintf()</td><td>0.120595</td></tr> <tr><td>Function: implode()</td><td>0.074862</td></tr> </table>
Output for 5.3.22
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.079090</td></tr> <tr><td>Dot Concatenation</td><td>0.063282</td></tr> <tr><td>In-string Replacement</td><td>0.057707</td></tr> <tr><td>Complex In-string Replacement</td><td>0.057501</td></tr> <tr><td>Function: sprintf()</td><td>0.123991</td></tr> <tr><td>Function: implode()</td><td>0.063349</td></tr> </table>
Output for 5.3.21
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.104649</td></tr> <tr><td>Dot Concatenation</td><td>0.075161</td></tr> <tr><td>In-string Replacement</td><td>0.059471</td></tr> <tr><td>Complex In-string Replacement</td><td>0.055762</td></tr> <tr><td>Function: sprintf()</td><td>0.130235</td></tr> <tr><td>Function: implode()</td><td>0.086370</td></tr> </table>
Output for 5.3.20
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.111298</td></tr> <tr><td>Dot Concatenation</td><td>0.075686</td></tr> <tr><td>In-string Replacement</td><td>0.068384</td></tr> <tr><td>Complex In-string Replacement</td><td>0.060797</td></tr> <tr><td>Function: sprintf()</td><td>0.102884</td></tr> <tr><td>Function: implode()</td><td>0.071610</td></tr> </table>
Output for 5.3.19
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.085203</td></tr> <tr><td>Dot Concatenation</td><td>0.063386</td></tr> <tr><td>In-string Replacement</td><td>0.071987</td></tr> <tr><td>Complex In-string Replacement</td><td>0.072228</td></tr> <tr><td>Function: sprintf()</td><td>0.119215</td></tr> <tr><td>Function: implode()</td><td>0.059703</td></tr> </table>
Output for 5.3.18
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.096119</td></tr> <tr><td>Dot Concatenation</td><td>0.075898</td></tr> <tr><td>In-string Replacement</td><td>0.060477</td></tr> <tr><td>Complex In-string Replacement</td><td>0.080830</td></tr> <tr><td>Function: sprintf()</td><td>0.117303</td></tr> <tr><td>Function: implode()</td><td>0.062662</td></tr> </table>
Output for 5.3.17
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.111772</td></tr> <tr><td>Dot Concatenation</td><td>0.059613</td></tr> <tr><td>In-string Replacement</td><td>0.053267</td></tr> <tr><td>Complex In-string Replacement</td><td>0.082414</td></tr> <tr><td>Function: sprintf()</td><td>0.141858</td></tr> <tr><td>Function: implode()</td><td>0.060670</td></tr> </table>
Output for 5.3.16
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.103338</td></tr> <tr><td>Dot Concatenation</td><td>0.056435</td></tr> <tr><td>In-string Replacement</td><td>0.062363</td></tr> <tr><td>Complex In-string Replacement</td><td>0.062701</td></tr> <tr><td>Function: sprintf()</td><td>0.128874</td></tr> <tr><td>Function: implode()</td><td>0.087819</td></tr> </table>
Output for 5.3.15
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.079455</td></tr> <tr><td>Dot Concatenation</td><td>0.056138</td></tr> <tr><td>In-string Replacement</td><td>0.050263</td></tr> <tr><td>Complex In-string Replacement</td><td>0.061971</td></tr> <tr><td>Function: sprintf()</td><td>0.126092</td></tr> <tr><td>Function: implode()</td><td>0.059790</td></tr> </table>
Output for 5.3.14
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.112224</td></tr> <tr><td>Dot Concatenation</td><td>0.070544</td></tr> <tr><td>In-string Replacement</td><td>0.058062</td></tr> <tr><td>Complex In-string Replacement</td><td>0.067098</td></tr> <tr><td>Function: sprintf()</td><td>0.121553</td></tr> <tr><td>Function: implode()</td><td>0.069657</td></tr> </table>
Output for 5.3.13
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.079701</td></tr> <tr><td>Dot Concatenation</td><td>0.055310</td></tr> <tr><td>In-string Replacement</td><td>0.050337</td></tr> <tr><td>Complex In-string Replacement</td><td>0.054953</td></tr> <tr><td>Function: sprintf()</td><td>0.100849</td></tr> <tr><td>Function: implode()</td><td>0.058836</td></tr> </table>
Output for 5.3.12
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.094862</td></tr> <tr><td>Dot Concatenation</td><td>0.061135</td></tr> <tr><td>In-string Replacement</td><td>0.058633</td></tr> <tr><td>Complex In-string Replacement</td><td>0.063147</td></tr> <tr><td>Function: sprintf()</td><td>0.108490</td></tr> <tr><td>Function: implode()</td><td>0.065784</td></tr> </table>
Output for 5.3.11
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.083840</td></tr> <tr><td>Dot Concatenation</td><td>0.075430</td></tr> <tr><td>In-string Replacement</td><td>0.068255</td></tr> <tr><td>Complex In-string Replacement</td><td>0.076725</td></tr> <tr><td>Function: sprintf()</td><td>0.102140</td></tr> <tr><td>Function: implode()</td><td>0.084399</td></tr> </table>
Output for 5.3.10
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.111809</td></tr> <tr><td>Dot Concatenation</td><td>0.075175</td></tr> <tr><td>In-string Replacement</td><td>0.057665</td></tr> <tr><td>Complex In-string Replacement</td><td>0.077861</td></tr> <tr><td>Function: sprintf()</td><td>0.105660</td></tr> <tr><td>Function: implode()</td><td>0.059633</td></tr> </table>
Output for 5.3.9
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.109904</td></tr> <tr><td>Dot Concatenation</td><td>0.073177</td></tr> <tr><td>In-string Replacement</td><td>0.059733</td></tr> <tr><td>Complex In-string Replacement</td><td>0.060888</td></tr> <tr><td>Function: sprintf()</td><td>0.114430</td></tr> <tr><td>Function: implode()</td><td>0.070558</td></tr> </table>
Output for 5.3.8
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.088999</td></tr> <tr><td>Dot Concatenation</td><td>0.064828</td></tr> <tr><td>In-string Replacement</td><td>0.065212</td></tr> <tr><td>Complex In-string Replacement</td><td>0.066340</td></tr> <tr><td>Function: sprintf()</td><td>0.125708</td></tr> <tr><td>Function: implode()</td><td>0.058544</td></tr> </table>
Output for 5.3.7
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.078440</td></tr> <tr><td>Dot Concatenation</td><td>0.056526</td></tr> <tr><td>In-string Replacement</td><td>0.049408</td></tr> <tr><td>Complex In-string Replacement</td><td>0.054585</td></tr> <tr><td>Function: sprintf()</td><td>0.101530</td></tr> <tr><td>Function: implode()</td><td>0.058422</td></tr> </table>
Output for 5.3.6
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.102028</td></tr> <tr><td>Dot Concatenation</td><td>0.054517</td></tr> <tr><td>In-string Replacement</td><td>0.048307</td></tr> <tr><td>Complex In-string Replacement</td><td>0.062295</td></tr> <tr><td>Function: sprintf()</td><td>0.130838</td></tr> <tr><td>Function: implode()</td><td>0.060812</td></tr> </table>
Output for 5.3.5
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.092747</td></tr> <tr><td>Dot Concatenation</td><td>0.055791</td></tr> <tr><td>In-string Replacement</td><td>0.051075</td></tr> <tr><td>Complex In-string Replacement</td><td>0.053576</td></tr> <tr><td>Function: sprintf()</td><td>0.116294</td></tr> <tr><td>Function: implode()</td><td>0.069628</td></tr> </table>
Output for 5.3.4
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.097208</td></tr> <tr><td>Dot Concatenation</td><td>0.055936</td></tr> <tr><td>In-string Replacement</td><td>0.048294</td></tr> <tr><td>Complex In-string Replacement</td><td>0.052021</td></tr> <tr><td>Function: sprintf()</td><td>0.103252</td></tr> <tr><td>Function: implode()</td><td>0.059012</td></tr> </table>
Output for 5.3.3
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.078129</td></tr> <tr><td>Dot Concatenation</td><td>0.058886</td></tr> <tr><td>In-string Replacement</td><td>0.052893</td></tr> <tr><td>Complex In-string Replacement</td><td>0.057278</td></tr> <tr><td>Function: sprintf()</td><td>0.102411</td></tr> <tr><td>Function: implode()</td><td>0.058756</td></tr> </table>
Output for 5.3.2
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.074948</td></tr> <tr><td>Dot Concatenation</td><td>0.071573</td></tr> <tr><td>In-string Replacement</td><td>0.067293</td></tr> <tr><td>Complex In-string Replacement</td><td>0.054379</td></tr> <tr><td>Function: sprintf()</td><td>0.099015</td></tr> <tr><td>Function: implode()</td><td>0.057688</td></tr> </table>
Output for 5.3.1
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.099739</td></tr> <tr><td>Dot Concatenation</td><td>0.058730</td></tr> <tr><td>In-string Replacement</td><td>0.053509</td></tr> <tr><td>Complex In-string Replacement</td><td>0.060913</td></tr> <tr><td>Function: sprintf()</td><td>0.112876</td></tr> <tr><td>Function: implode()</td><td>0.067838</td></tr> </table>
Output for 5.3.0
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.115868</td></tr> <tr><td>Dot Concatenation</td><td>0.053567</td></tr> <tr><td>In-string Replacement</td><td>0.048559</td></tr> <tr><td>Complex In-string Replacement</td><td>0.052700</td></tr> <tr><td>Function: sprintf()</td><td>0.100642</td></tr> <tr><td>Function: implode()</td><td>0.059292</td></tr> </table>
Output for 5.2.17
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.066696</td></tr> <tr><td>Dot Concatenation</td><td>0.036729</td></tr> <tr><td>In-string Replacement</td><td>0.033796</td></tr> <tr><td>Complex In-string Replacement</td><td>0.038177</td></tr> <tr><td>Function: sprintf()</td><td>0.078556</td></tr> <tr><td>Function: implode()</td><td>0.041983</td></tr> </table>
Output for 5.2.16
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.065312</td></tr> <tr><td>Dot Concatenation</td><td>0.033972</td></tr> <tr><td>In-string Replacement</td><td>0.029229</td></tr> <tr><td>Complex In-string Replacement</td><td>0.033650</td></tr> <tr><td>Function: sprintf()</td><td>0.076695</td></tr> <tr><td>Function: implode()</td><td>0.040223</td></tr> </table>
Output for 5.2.15
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.066256</td></tr> <tr><td>Dot Concatenation</td><td>0.033907</td></tr> <tr><td>In-string Replacement</td><td>0.030248</td></tr> <tr><td>Complex In-string Replacement</td><td>0.033537</td></tr> <tr><td>Function: sprintf()</td><td>0.078465</td></tr> <tr><td>Function: implode()</td><td>0.040532</td></tr> </table>
Output for 5.2.14
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.063952</td></tr> <tr><td>Dot Concatenation</td><td>0.035321</td></tr> <tr><td>In-string Replacement</td><td>0.033840</td></tr> <tr><td>Complex In-string Replacement</td><td>0.039074</td></tr> <tr><td>Function: sprintf()</td><td>0.082476</td></tr> <tr><td>Function: implode()</td><td>0.041706</td></tr> </table>
Output for 5.2.13
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.068110</td></tr> <tr><td>Dot Concatenation</td><td>0.035297</td></tr> <tr><td>In-string Replacement</td><td>0.030056</td></tr> <tr><td>Complex In-string Replacement</td><td>0.033722</td></tr> <tr><td>Function: sprintf()</td><td>0.077384</td></tr> <tr><td>Function: implode()</td><td>0.039711</td></tr> </table>
Output for 5.2.12
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.064775</td></tr> <tr><td>Dot Concatenation</td><td>0.037275</td></tr> <tr><td>In-string Replacement</td><td>0.036364</td></tr> <tr><td>Complex In-string Replacement</td><td>0.036964</td></tr> <tr><td>Function: sprintf()</td><td>0.084037</td></tr> <tr><td>Function: implode()</td><td>0.043248</td></tr> </table>
Output for 5.2.11
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.063890</td></tr> <tr><td>Dot Concatenation</td><td>0.035142</td></tr> <tr><td>In-string Replacement</td><td>0.029614</td></tr> <tr><td>Complex In-string Replacement</td><td>0.033917</td></tr> <tr><td>Function: sprintf()</td><td>0.078235</td></tr> <tr><td>Function: implode()</td><td>0.041334</td></tr> </table>
Output for 5.2.10
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.062973</td></tr> <tr><td>Dot Concatenation</td><td>0.034523</td></tr> <tr><td>In-string Replacement</td><td>0.029423</td></tr> <tr><td>Complex In-string Replacement</td><td>0.033448</td></tr> <tr><td>Function: sprintf()</td><td>0.075885</td></tr> <tr><td>Function: implode()</td><td>0.040529</td></tr> </table>
Output for 5.2.9
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.075646</td></tr> <tr><td>Dot Concatenation</td><td>0.037662</td></tr> <tr><td>In-string Replacement</td><td>0.032460</td></tr> <tr><td>Complex In-string Replacement</td><td>0.047078</td></tr> <tr><td>Function: sprintf()</td><td>0.084788</td></tr> <tr><td>Function: implode()</td><td>0.041383</td></tr> </table>
Output for 5.2.8
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.077131</td></tr> <tr><td>Dot Concatenation</td><td>0.035998</td></tr> <tr><td>In-string Replacement</td><td>0.033471</td></tr> <tr><td>Complex In-string Replacement</td><td>0.036615</td></tr> <tr><td>Function: sprintf()</td><td>0.079758</td></tr> <tr><td>Function: implode()</td><td>0.036592</td></tr> </table>
Output for 5.2.7
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.069179</td></tr> <tr><td>Dot Concatenation</td><td>0.034306</td></tr> <tr><td>In-string Replacement</td><td>0.030747</td></tr> <tr><td>Complex In-string Replacement</td><td>0.035523</td></tr> <tr><td>Function: sprintf()</td><td>0.081390</td></tr> <tr><td>Function: implode()</td><td>0.038689</td></tr> </table>
Output for 5.2.6
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.065671</td></tr> <tr><td>Dot Concatenation</td><td>0.036912</td></tr> <tr><td>In-string Replacement</td><td>0.031150</td></tr> <tr><td>Complex In-string Replacement</td><td>0.036150</td></tr> <tr><td>Function: sprintf()</td><td>0.082581</td></tr> <tr><td>Function: implode()</td><td>0.041406</td></tr> </table>
Output for 5.2.5
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.069328</td></tr> <tr><td>Dot Concatenation</td><td>0.036544</td></tr> <tr><td>In-string Replacement</td><td>0.029881</td></tr> <tr><td>Complex In-string Replacement</td><td>0.033333</td></tr> <tr><td>Function: sprintf()</td><td>0.082523</td></tr> <tr><td>Function: implode()</td><td>0.042158</td></tr> </table>
Output for 5.2.4
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.067785</td></tr> <tr><td>Dot Concatenation</td><td>0.034887</td></tr> <tr><td>In-string Replacement</td><td>0.030968</td></tr> <tr><td>Complex In-string Replacement</td><td>0.035057</td></tr> <tr><td>Function: sprintf()</td><td>0.090907</td></tr> <tr><td>Function: implode()</td><td>0.043713</td></tr> </table>
Output for 5.2.3
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.067496</td></tr> <tr><td>Dot Concatenation</td><td>0.034612</td></tr> <tr><td>In-string Replacement</td><td>0.030874</td></tr> <tr><td>Complex In-string Replacement</td><td>0.035163</td></tr> <tr><td>Function: sprintf()</td><td>0.082249</td></tr> <tr><td>Function: implode()</td><td>0.047696</td></tr> </table>
Output for 5.2.2
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.068222</td></tr> <tr><td>Dot Concatenation</td><td>0.034936</td></tr> <tr><td>In-string Replacement</td><td>0.039335</td></tr> <tr><td>Complex In-string Replacement</td><td>0.035927</td></tr> <tr><td>Function: sprintf()</td><td>0.081378</td></tr> <tr><td>Function: implode()</td><td>0.042948</td></tr> </table>
Output for 5.2.1
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.064794</td></tr> <tr><td>Dot Concatenation</td><td>0.033796</td></tr> <tr><td>In-string Replacement</td><td>0.049827</td></tr> <tr><td>Complex In-string Replacement</td><td>0.042102</td></tr> <tr><td>Function: sprintf()</td><td>0.070568</td></tr> <tr><td>Function: implode()</td><td>0.035484</td></tr> </table>
Output for 5.2.0
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.068351</td></tr> <tr><td>Dot Concatenation</td><td>0.037584</td></tr> <tr><td>In-string Replacement</td><td>0.043232</td></tr> <tr><td>Complex In-string Replacement</td><td>0.038367</td></tr> <tr><td>Function: sprintf()</td><td>0.063298</td></tr> <tr><td>Function: implode()</td><td>0.053510</td></tr> </table>
Output for 5.1.6
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.079979</td></tr> <tr><td>Dot Concatenation</td><td>0.038305</td></tr> <tr><td>In-string Replacement</td><td>0.065821</td></tr> <tr><td>Complex In-string Replacement</td><td>0.073964</td></tr> <tr><td>Function: sprintf()</td><td>0.064509</td></tr> <tr><td>Function: implode()</td><td>0.059695</td></tr> </table>
Output for 5.1.5
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.079196</td></tr> <tr><td>Dot Concatenation</td><td>0.038300</td></tr> <tr><td>In-string Replacement</td><td>0.071100</td></tr> <tr><td>Complex In-string Replacement</td><td>0.072434</td></tr> <tr><td>Function: sprintf()</td><td>0.063339</td></tr> <tr><td>Function: implode()</td><td>0.052223</td></tr> </table>
Output for 5.1.4
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.079856</td></tr> <tr><td>Dot Concatenation</td><td>0.041325</td></tr> <tr><td>In-string Replacement</td><td>0.069503</td></tr> <tr><td>Complex In-string Replacement</td><td>0.066746</td></tr> <tr><td>Function: sprintf()</td><td>0.069442</td></tr> <tr><td>Function: implode()</td><td>0.058678</td></tr> </table>
Output for 5.1.3
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.087470</td></tr> <tr><td>Dot Concatenation</td><td>0.037361</td></tr> <tr><td>In-string Replacement</td><td>0.067864</td></tr> <tr><td>Complex In-string Replacement</td><td>0.065949</td></tr> <tr><td>Function: sprintf()</td><td>0.064877</td></tr> <tr><td>Function: implode()</td><td>0.055321</td></tr> </table>
Output for 5.1.2
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.081557</td></tr> <tr><td>Dot Concatenation</td><td>0.040553</td></tr> <tr><td>In-string Replacement</td><td>0.072686</td></tr> <tr><td>Complex In-string Replacement</td><td>0.064848</td></tr> <tr><td>Function: sprintf()</td><td>0.066085</td></tr> <tr><td>Function: implode()</td><td>0.054688</td></tr> </table>
Output for 5.1.1
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.081780</td></tr> <tr><td>Dot Concatenation</td><td>0.037913</td></tr> <tr><td>In-string Replacement</td><td>0.075855</td></tr> <tr><td>Complex In-string Replacement</td><td>0.064359</td></tr> <tr><td>Function: sprintf()</td><td>0.067502</td></tr> <tr><td>Function: implode()</td><td>0.056328</td></tr> </table>
Output for 5.1.0
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.081303</td></tr> <tr><td>Dot Concatenation</td><td>0.038271</td></tr> <tr><td>In-string Replacement</td><td>0.068257</td></tr> <tr><td>Complex In-string Replacement</td><td>0.062666</td></tr> <tr><td>Function: sprintf()</td><td>0.063311</td></tr> <tr><td>Function: implode()</td><td>0.053781</td></tr> </table>
Output for 5.0.5
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.155431</td></tr> <tr><td>Dot Concatenation</td><td>0.070498</td></tr> <tr><td>In-string Replacement</td><td>0.110668</td></tr> <tr><td>Complex In-string Replacement</td><td>0.101340</td></tr> <tr><td>Function: sprintf()</td><td>0.101652</td></tr> <tr><td>Function: implode()</td><td>0.082654</td></tr> </table>
Output for 5.0.4
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.159165</td></tr> <tr><td>Dot Concatenation</td><td>0.073328</td></tr> <tr><td>In-string Replacement</td><td>0.110678</td></tr> <tr><td>Complex In-string Replacement</td><td>0.106020</td></tr> <tr><td>Function: sprintf()</td><td>0.099721</td></tr> <tr><td>Function: implode()</td><td>0.088561</td></tr> </table>
Output for 5.0.3
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.152263</td></tr> <tr><td>Dot Concatenation</td><td>0.072067</td></tr> <tr><td>In-string Replacement</td><td>0.098247</td></tr> <tr><td>Complex In-string Replacement</td><td>0.095072</td></tr> <tr><td>Function: sprintf()</td><td>0.100731</td></tr> <tr><td>Function: implode()</td><td>0.084118</td></tr> </table>
Output for 5.0.2
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.149502</td></tr> <tr><td>Dot Concatenation</td><td>0.070099</td></tr> <tr><td>In-string Replacement</td><td>0.101711</td></tr> <tr><td>Complex In-string Replacement</td><td>0.095775</td></tr> <tr><td>Function: sprintf()</td><td>0.099113</td></tr> <tr><td>Function: implode()</td><td>0.084223</td></tr> </table>
Output for 5.0.1
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.153583</td></tr> <tr><td>Dot Concatenation</td><td>0.071955</td></tr> <tr><td>In-string Replacement</td><td>0.104668</td></tr> <tr><td>Complex In-string Replacement</td><td>0.099566</td></tr> <tr><td>Function: sprintf()</td><td>0.104593</td></tr> <tr><td>Function: implode()</td><td>0.091199</td></tr> </table>
Output for 5.0.0
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.151535</td></tr> <tr><td>Dot Concatenation</td><td>0.068994</td></tr> <tr><td>In-string Replacement</td><td>0.100230</td></tr> <tr><td>Complex In-string Replacement</td><td>0.094265</td></tr> <tr><td>Function: sprintf()</td><td>0.100795</td></tr> <tr><td>Function: implode()</td><td>0.087718</td></tr> </table>
Output for 4.4.9
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.154722</td></tr> <tr><td>Dot Concatenation</td><td>0.076539</td></tr> <tr><td>In-string Replacement</td><td>0.103472</td></tr> <tr><td>Complex In-string Replacement</td><td>0.111330</td></tr> <tr><td>Function: sprintf()</td><td>0.105284</td></tr> <tr><td>Function: implode()</td><td>0.095514</td></tr> </table>
Output for 4.4.8
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>-0.846195</td></tr> <tr><td>Dot Concatenation</td><td>0.072789</td></tr> <tr><td>In-string Replacement</td><td>0.105603</td></tr> <tr><td>Complex In-string Replacement</td><td>0.106301</td></tr> <tr><td>Function: sprintf()</td><td>0.098142</td></tr> <tr><td>Function: implode()</td><td>0.093613</td></tr> </table>
Output for 4.4.7
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.153833</td></tr> <tr><td>Dot Concatenation</td><td>0.074841</td></tr> <tr><td>In-string Replacement</td><td>0.106271</td></tr> <tr><td>Complex In-string Replacement</td><td>-0.887989</td></tr> <tr><td>Function: sprintf()</td><td>0.101324</td></tr> <tr><td>Function: implode()</td><td>0.092333</td></tr> </table>
Output for 4.4.6
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.153806</td></tr> <tr><td>Dot Concatenation</td><td>0.085873</td></tr> <tr><td>In-string Replacement</td><td>0.119789</td></tr> <tr><td>Complex In-string Replacement</td><td>0.114723</td></tr> <tr><td>Function: sprintf()</td><td>0.103822</td></tr> <tr><td>Function: implode()</td><td>-0.907531</td></tr> </table>
Output for 4.4.5
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.155196</td></tr> <tr><td>Dot Concatenation</td><td>0.075329</td></tr> <tr><td>In-string Replacement</td><td>0.107517</td></tr> <tr><td>Complex In-string Replacement</td><td>0.107867</td></tr> <tr><td>Function: sprintf()</td><td>0.099999</td></tr> <tr><td>Function: implode()</td><td>0.092649</td></tr> </table>
Output for 4.4.4
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.163128</td></tr> <tr><td>Dot Concatenation</td><td>-0.919107</td></tr> <tr><td>In-string Replacement</td><td>0.108409</td></tr> <tr><td>Complex In-string Replacement</td><td>0.119348</td></tr> <tr><td>Function: sprintf()</td><td>0.103911</td></tr> <tr><td>Function: implode()</td><td>0.096996</td></tr> </table>
Output for 4.4.3
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.159804</td></tr> <tr><td>Dot Concatenation</td><td>0.079021</td></tr> <tr><td>In-string Replacement</td><td>0.107586</td></tr> <tr><td>Complex In-string Replacement</td><td>-0.895539</td></tr> <tr><td>Function: sprintf()</td><td>0.100053</td></tr> <tr><td>Function: implode()</td><td>0.099376</td></tr> </table>
Output for 4.4.2
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.155269</td></tr> <tr><td>Dot Concatenation</td><td>0.084141</td></tr> <tr><td>In-string Replacement</td><td>0.106291</td></tr> <tr><td>Complex In-string Replacement</td><td>0.101396</td></tr> <tr><td>Function: sprintf()</td><td>0.097452</td></tr> <tr><td>Function: implode()</td><td>0.093447</td></tr> </table>
Output for 4.4.1
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.157494</td></tr> <tr><td>Dot Concatenation</td><td>0.077987</td></tr> <tr><td>In-string Replacement</td><td>0.113190</td></tr> <tr><td>Complex In-string Replacement</td><td>0.108469</td></tr> <tr><td>Function: sprintf()</td><td>0.110149</td></tr> <tr><td>Function: implode()</td><td>0.094054</td></tr> </table>
Output for 4.4.0
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.163709</td></tr> <tr><td>Dot Concatenation</td><td>-0.919027</td></tr> <tr><td>In-string Replacement</td><td>0.113049</td></tr> <tr><td>Complex In-string Replacement</td><td>0.109298</td></tr> <tr><td>Function: sprintf()</td><td>0.103199</td></tr> <tr><td>Function: implode()</td><td>0.094803</td></tr> </table>
Output for 4.3.11
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.161015</td></tr> <tr><td>Dot Concatenation</td><td>0.080051</td></tr> <tr><td>In-string Replacement</td><td>0.098609</td></tr> <tr><td>Complex In-string Replacement</td><td>0.097449</td></tr> <tr><td>Function: sprintf()</td><td>-0.907949</td></tr> <tr><td>Function: implode()</td><td>0.092925</td></tr> </table>
Output for 4.3.10
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.150494</td></tr> <tr><td>Dot Concatenation</td><td>0.076766</td></tr> <tr><td>In-string Replacement</td><td>0.107070</td></tr> <tr><td>Complex In-string Replacement</td><td>0.106364</td></tr> <tr><td>Function: sprintf()</td><td>0.097894</td></tr> <tr><td>Function: implode()</td><td>0.096427</td></tr> </table>
Output for 4.3.9
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>-0.837958</td></tr> <tr><td>Dot Concatenation</td><td>0.079756</td></tr> <tr><td>In-string Replacement</td><td>0.112472</td></tr> <tr><td>Complex In-string Replacement</td><td>0.104229</td></tr> <tr><td>Function: sprintf()</td><td>0.103333</td></tr> <tr><td>Function: implode()</td><td>0.094763</td></tr> </table>
Output for 4.3.8
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.160790</td></tr> <tr><td>Dot Concatenation</td><td>0.076599</td></tr> <tr><td>In-string Replacement</td><td>-0.888118</td></tr> <tr><td>Complex In-string Replacement</td><td>0.138780</td></tr> <tr><td>Function: sprintf()</td><td>0.102277</td></tr> <tr><td>Function: implode()</td><td>0.096208</td></tr> </table>
Output for 4.3.7
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.169942</td></tr> <tr><td>Dot Concatenation</td><td>0.079842</td></tr> <tr><td>In-string Replacement</td><td>0.111255</td></tr> <tr><td>Complex In-string Replacement</td><td>0.111711</td></tr> <tr><td>Function: sprintf()</td><td>-0.896470</td></tr> <tr><td>Function: implode()</td><td>0.116729</td></tr> </table>
Output for 4.3.6
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.159353</td></tr> <tr><td>Dot Concatenation</td><td>0.077558</td></tr> <tr><td>In-string Replacement</td><td>0.116086</td></tr> <tr><td>Complex In-string Replacement</td><td>0.119757</td></tr> <tr><td>Function: sprintf()</td><td>0.100763</td></tr> <tr><td>Function: implode()</td><td>0.089541</td></tr> </table>
Output for 4.3.5
Warning: ini_set() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>-0.841932</td></tr> <tr><td>Dot Concatenation</td><td>0.081029</td></tr> <tr><td>In-string Replacement</td><td>0.106495</td></tr> <tr><td>Complex In-string Replacement</td><td>0.103220</td></tr> <tr><td>Function: sprintf()</td><td>0.101647</td></tr> <tr><td>Function: implode()</td><td>0.094316</td></tr> </table>
Output for 4.3.4
Warning: ini_set,pcntl_fork() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.152533</td></tr> <tr><td>Dot Concatenation</td><td>0.079722</td></tr> <tr><td>In-string Replacement</td><td>-0.888549</td></tr> <tr><td>Complex In-string Replacement</td><td>0.103408</td></tr> <tr><td>Function: sprintf()</td><td>0.085008</td></tr> <tr><td>Function: implode()</td><td>0.100839</td></tr> </table>
Output for 4.3.3
Warning: ini_set,pcntl_fork() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.157032</td></tr> <tr><td>Dot Concatenation</td><td>0.079320</td></tr> <tr><td>In-string Replacement</td><td>0.120732</td></tr> <tr><td>Complex In-string Replacement</td><td>0.111383</td></tr> <tr><td>Function: sprintf()</td><td>0.086621</td></tr> <tr><td>Function: implode()</td><td>-0.903919</td></tr> </table>
Output for 4.3.2
Warning: ini_set,pcntl_fork() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.148609</td></tr> <tr><td>Dot Concatenation</td><td>0.071269</td></tr> <tr><td>In-string Replacement</td><td>0.108846</td></tr> <tr><td>Complex In-string Replacement</td><td>0.105279</td></tr> <tr><td>Function: sprintf()</td><td>0.079998</td></tr> <tr><td>Function: implode()</td><td>0.087680</td></tr> </table>
Output for 4.3.1
Warning: ini_set,pcntl_fork() has been disabled for security reasons in /in/dihmt on line 4 <table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.158168</td></tr> <tr><td>Dot Concatenation</td><td>-0.922998</td></tr> <tr><td>In-string Replacement</td><td>0.117147</td></tr> <tr><td>Complex In-string Replacement</td><td>0.097514</td></tr> <tr><td>Function: sprintf()</td><td>0.082410</td></tr> <tr><td>Function: implode()</td><td>0.075780</td></tr> </table>
Output for 4.3.0
<table width="400" cellspacing="3"> <tr><td width="50%"><strong>Array Size:</strong></td><td width="50%"><strong>100000</strong></td></tr> <tr><td>Dot Equals</td><td>0.321728</td></tr> <tr><td>Dot Concatenation</td><td>0.157478</td></tr> <tr><td>In-string Replacement</td><td>0.171704</td></tr> <tr><td>Complex In-string Replacement</td><td>-0.758775</td></tr> <tr><td>Function: sprintf()</td><td>0.318588</td></tr> <tr><td>Function: implode()</td><td>0.219420</td></tr> </table>

preferences:
230.26 ms | 402 KiB | 325 Q