Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a datetime column in mysql which I need to convert to mm/dd/yy H:M (AM/PM) using PHP.

share|improve this question
3  
What we need to know is how the date is stored within the SQL. Is it Timestamp or Datetime or unixtime? – Ólafur Waage Sep 25 '08 at 23:15
2  
+1 old but helpful question. – BANG Mar 11 at 6:44

14 Answers

up vote 131 down vote accepted

This worked the best for me:

$datetime = strtotime($row->createdate);
$mysqldate = date("Y-m-d H:i:s", $datetime);
share|improve this answer
4  
Might had work, but it isn't standard mysql format. – levhita Feb 16 '12 at 23:56
196  
MySQL's standard format is: date("Y-m-d H:i:s", $datetime) – Andy Feb 22 '12 at 10:23
7  
@Erik Your MySQL quotation is correct and your PHP is not, check php.net/manual/en/function.date.php H 24-hour format of an hour with leading zeros vs G 24-hour format of an hour without leading zeros – Andy Mar 19 '12 at 10:46
3  
This will fail if the server is set to use English(British) locale. @Andy's solution in comments above works consistently – Basic May 23 '12 at 16:21
1  
I could be wrong, but I think some of you are missing the point. He wants the output to be in "m/d/y g:i A" format, pulling the original date from a DATETIME field. So his code works. @Mike $row->createdate is just Tim's datetime column. – Mere Development Mar 13 at 14:48
show 2 more comments

The accepted answer is probably wrong as this does not work:

$mysqldate = date("m/d/y g:i A", $datetime);

This works for me:

$phpdate = strtotime( $mysqldate );
$mysqldate = date( 'Y-m-d H:i:s', $phpdate );
share|improve this answer
3  
Thanks, that will be the last time I just copy and paste before reading the comments. – Samir Jan 18 at 20:37
like Samir said/... This one works – Kebyang Blabla Mar 18 at 12:36

If using php5, you can also try

$oDate = new DateTime($row->createdate);
$sDate = $oDate->format("m/d/y g:i A");
share|improve this answer

An easier way would be to format the date directly in the MySQL query, instead of PHP. See the MySQL manual entry for DATE_FORMAT.

If you'd rather do it in PHP, then you need the date function, but you'll have to convert your database value into a timestamp first.

share|improve this answer
1  
-1 because formatting date in DB is not good idea. Multilanguage web need different date formats and then you have to format date in PHP (business logic language in common). When you wrote about date function, then you should wrote about strottime function also to help someone instead of "but you'll have to convert your database value into a timestamp first". – Boris Šuška Apr 15 at 22:23

Use the date function:

<?php
    echo date("m/d/y g:i (A)", $DB_Date_Field);
?>
share|improve this answer
See below for what worked best for me: – Tim Boland Sep 25 '08 at 23:31
20  
Doesn't the date() function expect an integer timestamp rather than a datetime specified in the question? – Loftx Apr 6 '10 at 10:55

This should format a field in a SQL Query:

SELECT DATE_FORMAT( `fieldname` , '%d-%m-%Y' ) FROM tablename
share|improve this answer

This website should help you format the date using the date_format mysql function http://www.mysqlformatdate.com

share|improve this answer

Using PHP Version 4.4.9 & MySQL 5.0

This worked for me:

$oDate = strtotime($row['PubDate']);
$sDate = date("m/d/y",$oDate);
echo $sDate

Pubdate being the column in mysql.

share|improve this answer

forget all just try

$date = date("Y-m-d H:i:s",strtotime(str_replace('/','-',$date)))  
share|improve this answer

you can also have your query return the time as a unix timestamp. That would get rid fo the need to call strtotime() and make things a bit less intensive on the PHP side...

select  UNIX_TIMESTAMP(timsstamp) as unixtime from the_table where id = 1234;

then in PHP just use the date() function to format it whichever way you'd like.

<?php
  echo date('l jS \of F Y h:i:s A', $row->unixtime);
?>

or

<?php
  echo date('F j, Y, g:i a', $row->unixtime);
?>

I like this approach as opposed to using mysql's DATE_FORMAT function because it allows you to reuse the same query to grab the data and allows you to alter the formatting in PHP.

it's annoying to have two different queries just to change the way the date looks in the UI

share|improve this answer

You can have trouble with dates not returned in Unix Timestamp, so this works for me...

return date("F j, Y g:i a", strtotime(substr($datestring, 0, 15)))
share|improve this answer

Get Current date time,

<?php
    echo $datetime = date('m/d/Y h:i:s a', time());
    --OR--
    echo $datetime = date('m-d-Y h:i:s a', time());
?>

Reference: http://php.net/manual/en/datetime.format.php

share|improve this answer

I am using php version 5.3.8 - ZS5.5.0

MySql server version 5.1.50-community

$mysqldatetime = strtotime($your_query['your_datetime_column']);
$phpdatetime = date("d.m.Y - H:i:s",$mysqldatetime); // your datetime format
echo $phpdatetime;

Working code.

share|improve this answer
This does NOT convert the time to the format requested. – cale_b Oct 29 '12 at 0:42

ISO8601 is a well known, standardized time and date format, which is understood by both the mysql server and PHP. Sample date:

2005-08-15T15:52:01+0000

I'm using the DateTime class and it's constant DateTime::ISO8601 for that. As there is a constant, it is easy to remember.

Example:

// to mysql. (I'm using 'now' in this example)
$dt = new DateTime('now');
$columnval = $dt->format(DateTime::ISO8601);

// from mysql
$dt = new DateTime($row['time']);
share|improve this answer

protected by Robert Harvey Mar 9 '12 at 22:28

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.