如何使用PHP 擷取YouTube 影片ID
簡介
簡介
<code class="php">function youtube_id_from_url($url) { $pattern = '%^ (?:https?://)? # Optional scheme. Either http or https (?:www\.)? # Optional www subdomain (?: # Group host alternatives youtu\.be/ # Either youtu.be, | youtube\.com # or youtube.com (?: # Group path alternatives /embed/ # Either /embed/ | /v/ # or /v/ | /watch\?v= # or /watch\?v= ) # End path alternatives. ) # End host alternatives. ([\w-]{10,12}) # Allow 10-12 for 11 char youtube id. $%x'; $result = preg_match($pattern, $url, $matches); if ($result) { return $matches[1]; } return false; }</code>
用法範例
要使用該函數,只需將YouTube URL 作為參數傳遞:<code class="php">$video_id = youtube_id_from_url('http://youtu.be/NLqAF9hrVbY'); echo $video_id; // NLqAF9hrVbY</code>
YouTube oEmbed服務
雖然不是直接的 API 函數,但 YouTube 提供了 oEmbed 服務。透過以視訊 URL 作為參數向特定 URL 發出請求,您可以檢索有關視訊的其他信息,包括其 ID。此方法可以提供更多上下文並允許 URL 驗證。<code class="php">$url = 'http://youtu.be/NLqAF9hrVbY'; $oembed_url = sprintf('http://www.youtube.com/oembed?url=%s&format=json', urlencode($url)); $oembed_response = json_decode(file_get_contents($oembed_url)); if ($oembed_response) { $video_id = $oembed_response->video_id; }</code>
以上是如何使用 PHP 從 URL 中提取 YouTube 影片 ID?的詳細內容。更多資訊請關注PHP中文網其他相關文章!