vote up 1 vote down star

Column in mysql database named CreateDate, need to format to mm/dd/yy H:M (AM/PM) with PHP syntax

flag

71% accept rate

7 Answers

vote up 6 vote down check

Use the date function:

<?php
    echo date("m/d/y g:i (A)", $DB_Date_Field);
?>
link|flag
See below for what worked best for me: – Tim Boland Sep 25 '08 at 23:31
vote up 3 vote down

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.

link|flag
vote up 0 vote down

What we need to know is how the date is stored within the SQL. Is it Timestamp or Datetime or unixtime?

link|flag
The question says datetime – Tim Boland Sep 25 '08 at 23:21
vote up 2 vote down

This worked the best for me:

$datetime = strtotime($row->createdate);
$mysqldate = date("m/d/y g:i A", $datetime);
link|flag
vote up 0 vote down

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

link|flag
vote up 1 vote down

If using php5, you can also try

$oDate = new DateTime($row->createdate);
$sDate = $oDate->format("m/d/y g:i A");
link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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