0

可能重复:
php中的隐蔽时间格式

我从 mysql 数据库中获取 start_time 字段值2012-08-14 21:30:00

我想将它转换为 php 格式,如 2012-08-14T09:30 有什么方法可以做吗

这在 php 中?

4

2 回答 2

2

使用strtotime()

$date = strtotime('2012-08-14 21:30:00');
echo date('Y-m-d\Th:i',$date);
于 2012-08-18T07:53:59.340 回答
0

请参阅此示例。对于所需的日期和时间格式:

$date=date("Y-m-d H:i:s");//get the current date
$d=strtotime($date);//convert in strtotime
echo $final_date=date("Y-m-d\Th:i:s",$d);//in the first argument of date ,put the format whatever you want,but be sure to convert it in strtotime first.
于 2012-08-18T08:06:06.170 回答