$time="2013-01-02 08:08:08";echo date('m',strtotime($time)).'月'.date('d',strtotime($time)).'日';
用timetostr函数,然后再用date函数
$Times = '2013-01-02 08:08:08';echo date( 'm月d号', strtotime( $Times ) );