Quick Search:
 
 PHP Code: Convert Standard time to 24-hour time and vice versa Jump to:  
Category: >> PHP Code >> Convert Standard time to 24-hour time and vice versa  

<< lastnext >>

Snippet Name: Convert Standard time to 24-hour time and vice versa

Description: Convert 24-hour format to 12-hour format. Also works in the other direction too (12 hour to 24 hour).

Also see:
» Get Relative Dates and Times
» Convert UK Dates To mySQL Format Dates
» Calculate the difference between two t...
» FUNCTIONS: date/time
» Get Date 30 days ago
» Perl SQL Update Example
» SELECT: Select For Update
» TO_DATE
» UPDATE: Update a partitioned table
» UPDATE: Update based on a record
» UPDATE: Update Object Table
» UPDATE: with RETURNING clause
» UPDATE: Nested Table Update example
» UPDATE: Correlated Update
» UPDATE: Update from a SELECT statement
» UPDATE: based on multiple returned val...
» UPDATE: Update based on a query
» UPDATE: Update multiple rows
» UPDATE: update a specific record
» UPDATE: Single row
» Date Functions: NUMTOYMINTERVAL
» Date Functions: NUMTODSINTERVAL
» Date Functions: EXTRACT
» Date Functions: TO_DSINTERVAL
» Date Functions: TO_NCHAR
» Date Functions: TO_YMINTERVAL
» Dates: Oddball Stuff
» Date Functions: Calculate elapsed time...
» Date and Time Calculations: Get second...
» Date: Find first day of the month

Comment: (none)

Language: PHP
Highlight Mode: PHP
Last Modified: March 16th, 2009

<?PHP
 
// 24-hour time to 12-hour time 
$time_in_12_hour_format  = DATE("g:i a", STRTOTIME("13:30"));
 
// 12-hour time to 24-hour time 
$time_in_24_hour_format  = DATE("H:i", STRTOTIME("1:30 pm"));
 
?>


 
   Home |    Search |    Code Library |    Sponsors |    Privacy |    Terms of Use |    Contact Us © 2003 - 2024 psoug.org