我從數據庫中得到一個日期,例如2012-1-1,但我只想得到1-1 我該怎麼辦?日期時間從數據庫返回無年,如何?
$dt=GetFromDB($id); //return 2012-01-01;
$dt=new DateTime('m:d',$dt) ; // I only need 01-01
謝謝你的幫助。
哦對不起我這樣做
[UPDATE]
$date=new DateTime($dt);
$date=$date->format('m:d');
它的工作原理:-D
檢查這個它會幫助你... http://stackoverflow.com/questions/2935110/problem-to-get-date-month-year-separately-from-database-in-php-文件 – shofee 2012-03-02 04:23:49