我正在构建一项PHP服务,允许用户点击移动设备上的return HttpResponse(instance.image, content_type="image/jpeg")
按钮。
如何将Add to calendar
转换为使用PHP获得2009-09-12 15:00
的示例时间戳?
我玩过20091109T101015Z
strtotime
,但我认为我错过了正确的格式参数。
由于
答案 0 :(得分:0)
试试这个:
$date = '2009-09-12 15:00';
$formatted_date = gmdate('Ydm\THis\Z', strtotime($date));
答案 1 :(得分:0)
您是否尝试使用格式化?
$date = new DateTime("2009-09-12 15:00");
$formated = $date->format("Ydm\THis\Z");
答案 2 :(得分:0)
你走了:
$the_date = strtotime("2010-01-19 00:00:00");
echo(date_default_timezone_set("UTC") . "<br />");
echo(date("YmdTG:iz", $the_date) . "<br />");