I think I Can help with that... 😃
if (eregi("([a-z]{3})[ *]([0-9]{4}/[0-9]{2}/[0-9]{2} [0-9]{2}:[0-9]{2}) [^0-9 *]([0-9\-\.]{3,}) ([0-9\-\.]{3,}) ([0-9\.]{3,}) ([0-9\-:]{4,6}) ([0-9\-:]{4,6}) ([0-9\-:]{4,6}) ([0-9\-:]{4,6})", $variable, $matches))
{
echo 'MAtched!<br><pre>';
print_r($matches);
echo '</pre>';
}
else
{
echo 'No match :(<br>';
}
not tested... may work.... $matched would contain the values if it works 😛