Answers for "php convert date date to unix timestamp"

PHP
1

strtotime format

$date = '25/05/2010';
$date = str_replace('/', '-', $date);
echo date('Y-m-d', strtotime($date));
Posted by: Guest on June-03-2020

Code answers related to "php convert date date to unix timestamp"

Browse Popular Code Answers by Language