Hi! Could we please enable some services and cookies to improve your experience and our website?
Online Sandbox for SQL and PHP: Write, Run, Test, and Share SQL Queries and PHP Code
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";
<?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";