Answers for "hour to am and pm php"

PHP
5

php time format am pm

$currentDateTime = '08/04/2010 22:15:00';
$newDateTime = date('h:i A', strtotime($currentDateTime));
Posted by: Guest on March-25-2020
0

convert am pm time to 24 hour in php

echo date("H:i:s", strtotime("04:25 PM"));
Posted by: Guest on September-07-2020

Browse Popular Code Answers by Language