PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
ini_set('memory_limit', '-1'); $start = microtime(true); $data = range(1, 8000000); shuffle($data); sort($data); $end = microtime(true); echo "Czas sortowania w PHP: " . ($end - $start) . " sekund\n";
Copy Clear
Copy Format Clear
<?php ini_set('memory_limit', '-1'); $start = microtime(true); $data = range(1, 6000000); shuffle($data); sort($data); $end = microtime(true); echo "Czas sortowania w PHP: " . ($end - $start) . " sekund\n";
Show:  
Copy Clear