How to convert timestamp to DateTime in PHP
Timestamp conversion to DateTime in PHP is simple:
$date = new DateTime();
$date->setTimestamp($timestamp); // $timestamp - this is date in unix timestamp format
Timestamp conversion to DateTime in PHP is simple:
$date = new DateTime();
$date->setTimestamp($timestamp); // $timestamp - this is date in unix timestamp format
Comments