Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 YouTube/Google API,对于特定视频的上传日期,将返回以下格式的时间/日期:
2012-05-16T17:15:29.000Z
我不确定这是什么格式,但我想知道是否有一种简单的方法(例如使用DateTime())将其转换为 dd/mm/yyyy 格式?
DateTime()
任何提及时间格式的内容也将不胜感激;)。
那将是UTC时间
date_format($date, 'd/m/Y');
除了@web_bod 写的,你还可以做
date('d/m/Y', strtotime('2012-05-16T17:15:29.000Z') );
是的,当然有。
$date = new DateTime("2012-05-16T17:15:29.000Z"); echo $date->format("d/m/Y");