Wenn du es dir einfacher machen willst, nimm sowas:
Code:
function generation_time($
handle)
{
static $handles = array();
if (!isset($handles[$
handle]))
{
$handles[$
handle] = microtime_float();
}
else
{
return microtime_float() - $handles[$
handle];
}
}
Das hat den Vorteil, dass die Variable garantiert nicht überschrieben wird.