Answers for "mysql datetime string to datetime php"

PHP
0

string to datetime php

$s = '06/10/2011 19:00:02';
$date = strtotime($s);
echo date('d/M/Y H:i:s', $date);
Posted by: Guest on May-25-2020

Browse Popular Code Answers by Language