PHP - 将Youtube URL转换为嵌入URL

问题描述 投票:2回答:2

我正在尝试使用以下函数将标准Youtube网址转换为嵌入网址:

<?php

$url = 'https://www.youtube.com/watch?v=oVT78QcRQtU';

function getYoutubeEmbedUrl($url)
{
    $shortUrlRegex = '/youtu.be\/([a-zA-Z0-9_]+)\??/i';
    $longUrlRegex = '/youtube.com\/((?:embed)|(?:watch))((?:\?v\=)|(?:\/))(\w+)/i';

    if (preg_match($longUrlRegex, $url, $matches)) {
        $youtube_id = $matches[count($matches) - 1];
    }

    if (preg_match($shortUrlRegex, $url, $matches)) {
        $youtube_id = $matches[count($matches) - 1];
    }
    return 'https://www.youtube.com/embed/' . $youtube_id ;
}

getYoutubeEmbedUrl();

但是在运行时我收到以下错误:

Fatal error: Uncaught ArgumentCountError: Too few arguments to function getYoutubeEmbedUrl()

我不明白为什么我只有一个参数太少而且我提供它?

Online Editable Demo

php regex youtube
2个回答
1
投票

如果在PHP中定义函数,则无法在函数中访问非全局变量。

因此,您必须提供URL作为函数的参数(您已将其定义为$url)。

工作方案:

<?php

function getYoutubeEmbedUrl($url){
    $shortUrlRegex = '/youtu.be\/([a-zA-Z0-9_]+)\??/i';
    $longUrlRegex = '/youtube.com\/((?:embed)|(?:watch))((?:\?v\=)|(?:\/))(\w+)/i';

    if (preg_match($longUrlRegex, $url, $matches)) {
        $youtube_id = $matches[count($matches) - 1];
    }

    if (preg_match($shortUrlRegex, $url, $matches)) {
        $youtube_id = $matches[count($matches) - 1];
    }
    return 'https://www.youtube.com/embed/' . $youtube_id ;
}


$url = 'https://www.youtube.com/watch?v=oVT78QcRQtU';
$embeded_url = getYoutubeEmbedUrl($url);

echo $embeded_url;

我不明白为什么我只有一个参数太少而且我提供它?

必须通过方法调用提供PHP函数的参数。函数不使用预定义变量。


-1
投票

我想你在最后一行执行函数“getYoutubeEmbedUrl()”时不会传递参数。

尝试“echo get Youtube Embed Url($ url);”

© www.soinside.com 2019 - 2024. All rights reserved.