I am currently facing an issue with date_create_from_format PHP. Here is the code:
date_default_timezone_set('Asia/Kathmandu');
$date = date_create_from_format('d/m/Y H:iA', '28/05/2016 15:24PM');
echo date('d/m/Y h:iA',$date->getTimestamp());
//returns 29/05/2016 03:24AM
I am just trying to change the 24 hour time to 12 hour. But now working.Thanks.