沒見過這種時間格式,如何用PHP格式化它

來源:互聯網
上載者:User
從某API中擷取到的時間格式是這樣的 2014-10-30T15:59:59.999Z
PHP如何格式化它為正常的date例如 Y-m-d H:i:s

回複內容:

從某API中擷取到的時間格式是這樣的2014-10-30T15:59:59.999Z
PHP如何格式化它為正常的date例如Y-m-d H:i:s

可以自己定義,現在都採用物件導向的方式來操作時間了,就是所謂的DateTime

有很多已經定義好的格式

 DateTime implements DateTimeInterface {/* 常量 */const string ATOM = "Y-m-d\TH:i:sP" ;const string COOKIE = "l, d-M-Y H:i:s T" ;const string ISO8601 = "Y-m-d\TH:i:sO" ;const string RFC822 = "D, d M y H:i:s O" ;const string RFC850 = "l, d-M-y H:i:s T" ;const string RFC1036 = "D, d M y H:i:s O" ;const string RFC1123 = "D, d M Y H:i:s O" ;const string RFC2822 = "D, d M Y H:i:s O" ;const string RFC3339 = "Y-m-d\TH:i:sP" ;const string RSS = "D, d M Y H:i:s O" ;const string W3C = "Y-m-d\TH:i:sP" ;……//http://php.net/manual/zh/class.datetime.php}

上面格式化,代碼如下

$date = new DateTime('2014-10-30T15:59:59.999Z');echo $date->format('Y-m-d H:i:s');

echo(date_format(date_create('2014-10-30T15:59:59.999Z'),'Y/m/d H:i:s'));
這麼標準的ISO時間格式

怎麼沒人回複strtotime這個變態又常用的函數?

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.