1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

How to convert military time to standard time?

Discussion in 'PHP' started by greatlogix, Dec 30, 2010.

  1. #1
    MySQL saves time in military format in datetime field. I want to show this as standard time on the page. How can I do it?
    I want to convert 23:55:12 to 11:55:12 PM
     
    greatlogix, Dec 30, 2010 IP
  2. Cida

    Cida Peon

    Messages:
    6
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #2
    You can convert it to a time stamp with strtotime(), and then format it with date().
    
    $military_time = '23:55:12';
    $standard_time = date('h:i:s A', strtotime($military_time));
    
    Code (php):
     
    Cida, Dec 30, 2010 IP