format string to timestamp php code example
Example 1: php datetime to timestamp
$time = '2021-03-31 23:59:00';
strtotime($time);
Example 2: php timestamp format
date("d.m.Y", strtotime($mysqltimestamp)
$time = '2021-03-31 23:59:00';
strtotime($time);
date("d.m.Y", strtotime($mysqltimestamp)