Salve a tutti, potete aiutarmi a capire come modificare questo script:
In questo momento legge il content di un tag sviluppato così:Codice PHP:if (preg_match_all("/<meta[^>]+name=\"([^\"]*)\"[^>]" . "+content=\"([^\"]*)\"[^>]+>/i", $this->source, $metas))
{
$count = count($metas[0]);
$res = array();
for ($i = 0; $i < $count; $i++)
{
$res[strtolower(trim($metas[1][$i]))] = trim($metas[2][$i]);
}
$this->metas = $res;
}
<meta name="title" content="testo" />
Vorrei leggere content anche di questo tag
<meta content="testo" name="title" />

