<?php
$timestamp = 32154654321;
$format = 'Y-m-d H:i:s';
$date = new \DateTime();
$date->setTimestamp($timestamp);
echo $date->format($format);