Jump to content

[SOLVED] conversion of time string


rsammy

Recommended Posts

i have time stored in a string $visit_time

 

it comes in as "2:15 PM" or "10:13 AM". i am trying to convert this to 24 hour format...

 

say 14:15 or 10:13 depending on AM or PM in the string.

 

i am trying to split this string as:

 

 

list($hour, $min)=split('[:]', $visit_time);
	if (strlen($hour)==1)
	{
		$visit_time_reformat="0".$hour;
	}
	if (strlen($min)==1)
	{
		$visit_time_reformat=$visit_time_reformat.":".$min;
	}

 

now, how can i get rid of "AM" or "PM" and display the time($visit_time_reformat) in 24 hour format?

Link to comment
https://forums.phpfreaks.com/topic/45281-solved-conversion-of-time-string/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.