php 如何转换时间格式

如:2013-01-02 08:08:08转换成 1月2号
2024-11-01 16:31:55
推荐回答(3个)
回答1:

$time="2013-01-02 08:08:08";
echo date('m',strtotime($time)).'月'.date('d',strtotime($time)).'日';

回答2:

用timetostr函数,然后再用date函数

回答3:

$Times = '2013-01-02 08:08:08';
echo date( 'm月d号', strtotime( $Times ) );