AD
I have seen many php coder have problem facing like this even me. But I have found solution for it & I want to share with you. you can find it some other place too but I have to save your time.
Scenario : I have one day issue arise like that I have 4:30 PM time & I want time in format 24 hours from 12 hours. I want output like 16:30 from 4:30 PM
Solution : date("H:i", strtotime(your time));
// 12-hour time to 24-hour time
$time_in_24_hour_format = date("H:i", strtotime("4:30 PM"));
Output - 16:30
Similar way you can convert 24 hours format to 12 Hours format.
// 24-hour time to 12-hour time
$time_in_12_hour_format = date("g:i a", strtotime("16:30"));
Output -
4:30 PM
A blogger
I am passionate blogger cum B.Tech. Computer engineering graduate. I love writing blog post. I spend my free time in writing blog post that will useful to everyone (including me). I have had some success making money blogging and want to help others do the same. I just figured that by creating a great and free resource a lot of links would follow – and they have. Some people ask me how they can repay me – which is not necessary - but for those wanting to show their appreciation, I just say linking to the article from their blog is the best compensation I could receive. Thanks for reading!
0 comments:
Post a Comment
Thanks for commenting. I will Reply you soon