Php converts 12-hour to 24-hour. PHP 24-hour _ php Tutorial

Source: Internet
Author: User
Php converts a 12-hour to a 24-hour php. Php converts a 12-hour system to a 24-hour system. This document describes how php converts a 12-hour system to a 24-hour system. Share it with you for your reference. Php converts a 12-hour format to a 24-hour format.

This example describes how php converts a 12-hour system to a 24-hour system. Share it with you for your reference. The details are as follows:

Php converts 12-hour to 24-hour. the input format is: 02: 30: 00 pm To: 14: 30: 00.

<?phpfunction to_24_hour($hours,$minutes,$seconds,$meridiem){ $hours = sprintf('%02d',(int) $hours); $minutes = sprintf('%02d',(int) $minutes); $seconds = sprintf('%02d',(int) $seconds); $meridiem = (strtolower($meridiem)=='am') ? 'am' : 'pm'; return date('H:i:s', strtotime("{$hours}:{$minutes}:{$seconds}{$meridiem}"));}echo to_24_hour( 1, 2, 3, 'pm' ); // Returns 13:02:03echo to_24_hour( '02', '30', '00', 'pm' ); // Returns 14:30:00?>

I hope this article will help you with php programming.

Example: This article describes how php converts a 12-hour system to a 24-hour system. Share it with you for your reference. Details :...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.