convert time to am pm php code example
Example 1: php time format am pm
$currentDateTime = '08/04/2010 22:15:00';
$newDateTime = date('h:i A', strtotime($currentDateTime));
Example 2: convert am pm time to 24 hour in php
echo date("H:i:s", strtotime("04:25 PM"));