我的约会时间是2012-04-02 10:01:00 am 我想在这个日期的尾部用PST / CST显示这个日期,如2012-04-02 10:01:00太平洋标准时间。
有没有办法将正常日期转换为这种格式?
答案 0 :(得分:1)
是的,有: 看看这里的功能: http://php.net/manual/en/function.date.php
答案 1 :(得分:1)
您可以通过添加T缩写来实现此目的,例如:
date('Y-m-d H:i:s T')
//date('Y-m-d H:i:s T', strtotime('2012-01-12 12:30:45')); // for specific date
答案 2 :(得分:0)
您应该使用DateTime::SetTimeZone()
将时区设置为特定的DateTime变量,然后使用正确格式的DateTime::format
来获取您想要的值:'Y-m-d H:i:s T'