<?php

$start = microtime(1);

$count = 0;
while ($count < 1000000)
{
	md5('blabla');
	$count++;
}

$end = microtime(1);

echo round($end - $start, 2);
