自2016年3月以来,我一直在使用下面的代码来获取使用YouTube API v3的视频时长($ vid_dur),并且没有任何问题,直到它在没有任何干预的情况下今天弯腰工作。有什么建议吗?
<?php
$vidkey = "xxxxxxxxx" ;
$apikey = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" ;
$dur = file_get_contents("https://www.googleapis.com/youtube/v3/videos?part=contentDetails&id=$vidkey&key=$apikey");
$VidDuration =json_decode($dur, true);
foreach ($VidDuration['items'] as $vidTime)
{
$VidDuration= $vidTime['contentDetails']['duration'];
}
// convert duration from ISO to M:S
$date = new DateTime('2000-01-01');
$date->add(new DateInterval($VidDuration));
$vid_durH= $date->format('H') ;
if ($vid_durH=="00") {
$vid_dur= $date->format('i:s') ;
}
else {
$vid_dur= $date->format('H:i:s') ;
}
?>
以下是错误消息的一部分
致命错误:未捕获的异常&#39;异常&#39;与消息 &#39; DateInterval :: __ construct()[dateinterval .-- construct]:未知 或格式错误()&#39;
答案 0 :(得分:3)
我已经测试了你的代码,它正在运行。我认为您遇到了file_get_contents
的问题,您可能希望使用Google APIs Client Library for PHP,因为它提供了对许多Google API的简单,灵活,强大的访问权限。
使用您的请求:
我在哪里设置$videokey=UqyT8IEBkvY
(24K魔术)
"https://www.googleapis.com/youtube/v3/videos?part=contentDetails&id=$vidkey&key=$apikey"
响应:
"items": [
{
"kind": "youtube#video",
"etag": "\"GM4ZnRh2gk1X1BLWgHklTm-3cgQ/tokAeZifZMO865fU_ytDkWOyIQ0\"",
"id": "UqyT8IEBkvY",
"contentDetails": {
"duration": "PT3M47S",
"dimension": "2d",
"definition": "hd",
"caption": "false",
"licensedContent": true,
"projection": "rectangular"
}
}
]
您的代码:
$VidDuration= "PT3M47S";
$date = new DateTime('2000-01-01');
$date->add(new DateInterval($VidDuration));
$vid_durH= $date->format('H') ;
if ($vid_durH=="00") {
$vid_dur= $date->format('i:s') ;
}
else {
$vid_dur= $date->format('H:i:s') ;
}
echo $vid_dur;
希望这有帮助。