时间格式:PHP

时间:2012-08-18 07:42:12

标签: php json

  

可能重复:
  Covert time format in php

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

我想用php格式转换它像2012-08-14T09:30有什么办法吗

这是在PHP吗?

2 个答案:

答案 0 :(得分:2)

使用strtotime()

$date = strtotime('2012-08-14 21:30:00');
echo date('Y-m-d\Th:i',$date);

答案 1 :(得分: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.