How to convert the time from AM/PM to 24 hour format in PHP?

前端 未结 7 2265
旧时难觅i
旧时难觅i 2020-12-07 22:58

For example, I have a time in this format:

eg. 

09:15 AM
04:25 PM
11:25 AM

How do I convert it to :

09:15
16:25
23:25
         


        
7条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-07 23:25

    We can use Carbon

     $time = '09:15 PM';
     $s=Carbon::parse($time);
     echo $military_time =$s->format('G:i');
    

    http://carbon.nesbot.com/docs/

提交回复
热议问题