Can someone give me a quick and dirty way to split a datetime (28-1-2011 14:32:55) into just the date (28-1-2011) and the time ( 14:32 ) or even better (2:32 PM) using PHP. Using a mySQL database as well.
Cheers
|
if your source of data is MySQL:
http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html#function_time http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html#function_date |
||||
|
|
If you're using PHP > 5.2:
Prior to PHP 5.2 mhitza gave a good answer. |
|||
|
|
In php you can use the
|
|||
|
|
|
If you looking for a really quick and dirty solution.
|
|||
|
|
DateTimeobject? – Pekka 웃 Apr 3 '11 at 19:57