Convert this string to datetime

The Solution to Convert this string to datetime is


Use DateTime::createFromFormat

$date = date_create_from_format('d/m/Y:H:i:s', $s);
$date->getTimestamp();

~ Answered on 2011-11-09 09:50:31


Most Viewed Questions: