Oh thanks.. bad day! I hacked it :
$DatePart = substr($ThisDate,0,2);
$MonthPart = substr($ThisDate,2,2);
$YearPart = substr($ThisDate,4,4);
$UKRep = $DatePart.'/'.$MonthPart.'/'.$YearPart;
list ($day, $month, $year) = split ("/", $UKRep);
$newerdate = $month."/".$day."/".$year;
$UnixDate = strtotime($newerdate);
$NewDate = date('j F Y',$UnixDate);
I know - inelegant! :o