ahcanor
12/27/2014 - 1:37 PM

Benchmark para php

Benchmark para php

<?php
$start = microtime(true);

$end = microtime(true);
echo '<br>Processing time: ' . ($end-$start) . ' seconds.';
?>