<?php function foo() { return 12; } $s = microtime(true); for ($i = 0; $i < 1000; $i++) { $str = ''; for ($k = 0; $k < 280; $k++) { $str .= chr(foo()); } } $e = microtime(true); echo ($e - $s) . " Seconds\n";
You have javascript disabled. You will not be able to edit any code.