niente di più facile, eccoti il codice
Codice PHP:
<?php
$pubdate = "Mon, 09 Sep 2007 23:22:00 +0000";
$pieces = explode(" ",$pubdate);
$day = $pieces[1];
$month = $pieces[2];
if($month == "Jan") { $month="01"; }
if($month == "Feb") { $month="02"; }
if($month == "Mar") { $month="03"; }
if($month == "Apr") { $month="04"; }
if($month == "May") { $month="05"; }
if($month == "Jun") { $month="06"; }
if($month == "Jul") { $month="07"; }
if($month == "Aug") { $month="08"; }
if($month == "Sep") { $month="09"; }
if($month == "Oct") { $month="10"; }
if($month == "Nov") { $month="11"; }
if($month == "Dec") { $month="12"; }
$year = $pieces[3];
$new_date = $day."/".$month."/".$year;
?>
naturalmente in $pubdate ho lasciato come valore la data dell'esempio da te proposto, poi lo script fara' il resto e ti dara' la nuova data correttamente formattata nella variabile $new_date
ciao ciao