this code is obtuse for my test?
error_reporting(E_ALL);
ini_set('display_errors', 1);
$p = 'abc';
$i = microtime(1);
echo hash('SHA256', $p);
echo '<hr />';
var_dump(number_format(microtime(1) - $i, 7));
echo '<hr />';
$i = microtime(1);
echo hash('SHA512', $p);
echo '<hr />';
var_dump(number_format(microtime(1) - $i, 7));
echo '<hr />';
why forever I get a fragment of time in the SECOND line vs the first?
is more efficient SHA512 or my "BENCHMARK" is ridiculous ?