0

我的网站上有一个发布功能,可以嵌入链接和 youtube 视频。问题是,两者发生冲突,youtube iframe 最终成为我网站上的 404 页面。我的 youtube 视频和链接代码如下,但我不知道如何阻止它们组合和破坏它。
通过结合,我的意思是这个http://www.youtube.com/watch?v=VhqiT2nWCVU变成
<iframe src="http://www.youtube.com/watch?v=VhqiT2nWCVU">
哪个然后变成

<iframe src="<a href="http://www.youtube.com/watch?v=VhqiT2nWCVU"></a>">

抱歉,如果我有任何不清楚的地方。我的代码如下。

function youtube($string)
{
  return preg_replace(
    '#(http://(www.)?youtube.com)?/(v/|watch\?v\=)([-|~_0-9A-Za-z]+)&?.*?#i',
    '<iframe title="YouTube video player" width="480" height="390" src="http://www.youtube.com/embed/$4?rel=0" frameborder="0" allowfullscreen></iframe>',
    $string
  );
}

$posted = youtube($posted);

$rexProtocol = '(https?://)?';
$rexDomain   = '((?:[-a-zA-Z0-9]{1,63}\.)+[-a-zA-Z0-9]{2,63}|(?:[0-9]{1,3}\.){3}[0-9]{1,3})';
$rexPort     = '(:[0-9]{1,5})?';
$rexPath     = '(/[!$-/0-9:;=@_\':;!a-zA-Z\x7f-\xff]*?)?';
$rexQuery    = '(\?[!$-/0-9:;=@_\':;!a-zA-Z\x7f-\xff]+?)?';
$rexFragment = '(#[!$-/0-9:;=@_\':;!a-zA-Z\x7f-\xff]+?)?';

// Solution 1:

function callback($match)
{
    // Prepend http:// if no protocol specified
    $completeUrl = $match[1] ? $match[0] : "http://{$match[0]}";

    return '<a href="' . $completeUrl . '">'
        . $match[2] . $match[3] . $match[4] . '</a>';
}


$posted = preg_replace_callback("&\\b$rexProtocol$rexDomain$rexPort$rexPath$rexQuery$rexFragment(?=[?.!,;:\"]?(\s|$))&",
    'callback', $posted);
4

1 回答 1

1

这个问题的一个流行的解决方案是使用占位符。第一次通过时,您将所有 YouTube 链接转换为占位符,例如:

{{youtube:VhqiT2nWCVU}}

之后,您运行正常的链接转换器。最后,您运行另一个正则表达式,将所有占位符转换为 youtube 嵌入。

于 2013-08-25T21:17:33.797 回答