I have the following code:
if ($_POST[\'submit\'] == \"Next\") { foreach($_POST[\'info\'] as $key => $value) { echo $value; } }
On a array filled with 1000 elements the difference is quite minimal.
Test:
'; $t2 = time() + microtime(true); for ($i = 0; $i < 1000; $i++) { skip($array); } var_dump((time() + microtime(true)) - $t2); ?>
Output:
float(0.23605012893677)
float(0.24102783203125)