Don't you read the manuall?
Here:
// for any date format
$date = '2002-10-4';
$newdate = date("D, M j ",strtotime($date));
echo $newdate."<BR>";
//... or for unix time stamps:
$unix_time_stamp = 1033682963;
$newdate = date("D, M j ", $unix_time_stamp);
echo $newdate."<BR>";