transform unix timestamp in date code example
Example: transform unix timestamp in date
//Our date string. The format is Y-m-d H:i:s
$date = '2019-04-01 10:32:00';
//Convert it into a Unix timestamp using strtotime.
$timestamp = strtotime($date);
//Print it out.
echo $timestamp;