Hi! Could we please enable some services and cookies to improve your experience and our website?

PHPize Online / SQLize Online  /  SQLtest Online

A A A
Login    Share code      Blog   FAQ

Online Sandbox for SQL and PHP: Write, Run, Test, and Share SQL Queries and PHP Code

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";

Stuck with a problem? Got Error? Ask AI support!

Copy Clear
Copy Format Clear
<?php 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