This is a unix timestamp. Convert it using a DateTime object:
$dt = new DateTime('@'.'1313790243'); echo $dt->format('Ymd H:i:s');
You can also use the DateTimeZone object to convert it to your time zone (or depending on which time zone you prefer):
$dt->setTimeZone(new DateTimeZone('America/New_York')); echo $dt->format('Ymd H:i:s');
source share