I have a datetime column in mysql which I need to convert to mm/dd/yy H:M (AM/PM) using PHP.
|
|
This worked the best for me:
|
|||||||||||||||||||||
|
|
The accepted answer is probably wrong as this does not work:
This works for me:
|
|||||||
|
|
If using php5, you can also try
|
|||
|
|
|
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. |
|||||
|
|
Use the date function:
|
|||||||
|
|
This should format a field in a SQL Query:
|
||||
|
|
|
This website should help you format the date using the date_format mysql function http://www.mysqlformatdate.com |
|||
|
|
|
Using PHP Version 4.4.9 & MySQL 5.0 This worked for me:
Pubdate being the column in mysql. |
|||
|
|
|
forget all just try
|
|||
|
|
|
you can also have your query return the time as a unix timestamp. That would get rid fo the need to call
then in PHP just use the
or
I like this approach as opposed to using mysql's it's annoying to have two different queries just to change the way the date looks in the UI |
|||
|
|
|
You can have trouble with dates not returned in Unix Timestamp, so this works for me...
|
||||
|
|
|
Get Current date time,
Reference: http://php.net/manual/en/datetime.format.php |
||||
|
|
|
I am using php version MySql server version
Working code. |
||||
|
|
|
ISO8601 is a well known, standardized time and date format, which is understood by both the mysql server and PHP. Sample date:
I'm using the Example:
|
|||
|
|
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.
