Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.