phpでunixtimeから日時に変換

$date_unixtime_str = '946652400';
$date = new DateTime('@' . $date_unixtime_str);

echo $date->format('Y-m-d H:i:s');