A mi si me funciona....
Código PHP:
$content = strip_tags('<font style="font-family:arial; color:#000000; font-size:13px; font-weight:bold; line-height:22px;">File size:</font> <font style="font-family:arial; color:#000000; font-size:13px;">5.64 MB</font>');
if (!preg_match('/File size:\s+([0-9\.]+)\s+(MB|KB|B)/Uis', $content, $matches))
die('Ha ocurrido un error al intentar obtener el tamaño del archivo');
print_r($matches);