我使用以下内容获取YouTube视频的发布日期:
$url = "http://gdata.youtube.com/feeds/api/videos/{$random_text}?v=2&alt=json";
$json = file_get_contents($url);
$json = str_replace('$', '_', $json);
$obj = json_decode($json);
$video_date = $obj->entry->published->_t;
以这种格式输出日期:
2012-10-18t13:04:42.000z
如何在PHP中将其转换为DD / MM / YY格式?
我已尝试过以下解决方案:
What time format is this and how do I convert it to a standardized dd/mm/yyyy date?
$video_date_pre = $obj->entry->published->_t;
// format the video date
$video_date = date_format($video_date_pre, 'd/m/Y');
但我收到错误:
警告:date_format()期望参数1为DateTime ..
谢谢你。更新
可能需要注意原始来源看起来像这样(您可以搜索“已发布”):
http://gdata.youtube.com/feeds/api/videos/eiAx2kqmUpQ?v=2&alt=json
答案 0 :(得分:7)
试试这个:
$video_date = date('d/m/y', strtotime($video_date_pre));
在此解决方案中,您需要先将字符串转换为Unixtime,然后才能使用date()函数。
http://php.net/manual/en/function.strtotime.php
http://www.php.net/manual/en/function.date.php
或者您可以使用DateTime对象:
$dateObject = new DateTime($video_date_pre);
$video_date = date_format($dateObject , 'd/m/y');