<?php $start = microtime(true); for ($i = 0; $i < 10000000; $i++) { 2 ** 16; } echo "Pow operator: " . (microtime(true) - $start) . "\n"; $start = microtime(true); for ($i = 0; $i < 10000000; $i++) { pow(2, 16); } echo "Pow function: " . (microtime(true) - $start) . "\n";
You have javascript disabled. You will not be able to edit any code.