0

我有一个人们发布更新的输入区域。所以我想过滤 youtube 链接,修改它们并在最后附加它们。

该内容不是html,甚至没有<br>or <p>,它只是纯字符串。

这是我从程序的不同部分获得的代码。

这应该做的是,获取所有匹配项,并用 html 替换它们。

function aKaFilter( $content ) {
    global $bp;

    $pattern2 = '#^(?:https?://)?(?:www\.)?(?:youtube(?:-nocookie)?\.com/(?:[^/]+/.+/|(?:v|e(?:mbed)?)/|.*[?&]v=)|youtu\.be/)([^"&?/ ]{11})(?:.+)?$#x';
    preg_match_all( $pattern2, $content, $youtubes );
    if ( $youtubes ) {
        /* Make sure there's only one instance of each video */
        if ( !$youtubes = array_unique( $youtubes[1] ) )
            return $content;

        //but we need to watch for edits and if something was already wrapped in html link - thus check for space or word boundary prior
        foreach( (array)$youtubes as $youtube ) {
            $pattern = "NEW". $youtube ."PATTERN TO MATCH THIS LINK";
            $content = preg_replace( $pattern, '<span class="video youtube" data-trigger="'.$youtube.'"><img src="http://img.youtube.com/vi/'.$youtube.'/0.jpg"><span class="icon-stack"><i class="icon-circle icon-stack-base"></i><i class="icon-youtube-play"></i></span><span>title</span></span>', $content );
        }
    }

    return $content;
}

这是原始代码:

function etivite_bp_activity_hashtags_filter( $content ) {
global $bp;

//what are we doing here? - same at atme mentions
//$pattern = '/[#]([_0-9a-zA-Z-]+)/';
$pattern = '/(?(?<!color: )(?<!color: )[#]([_0-9a-zA-Z-]+)|(^|\s|\b)[#]([_0-9a-zA-Z-]+))/';

preg_match_all( $pattern, $content, $hashtags );
if ( $hashtags ) {
    /* Make sure there's only one instance of each tag */
    if ( !$hashtags = array_unique( $hashtags[1] ) )
        return $content;

    //but we need to watch for edits and if something was already wrapped in html link - thus check for space or word boundary prior
    foreach( (array)$hashtags as $hashtag ) {
        $pattern = "/(^|\s|\b)#". $hashtag ."($|\b)/";
        $content = preg_replace( $pattern, ' <a href="' . $bp->root_domain . "/" . $bp->activity->slug . "/". BP_ACTIVITY_HASHTAGS_SLUG ."/" . htmlspecialchars( $hashtag ) . '" rel="nofollow" class="hashtag">#'. htmlspecialchars( $hashtag ) .'</a>', $content );
    }
}

return $content;
}

它的作用是,它需要 textarea,而不是 #hash,它会替换为<a>#hash</a> 您在社交媒体中看到的主题标签。

我希望我的功能做的是获取 youtube 链接并将其转换为<a>ID</a>(基本上)

如果我只有 youtube 链接,它可以正常工作,但是当它在它之后或之前带有字符串时,它就会变得疯狂。

我想它不起作用,因为我没有想出第二个 $pattern。在其他程序中有。

4

4 回答 4

1

尝试使用带有文本的正则表达式匹配 URL 时的问题是您无法知道 URL 何时结束。

URL 可以包含“空格” .,和其他字符,因此您不能说 URL 在新单词开始或句子结束时结束。此外,您的正则表达式的结尾(?:.+)?将匹配(几乎)所有内容

如果您假设 yutube URL 不能包含空格(在 URL 的给定位置/索引之后),则可以将正则表达式的结尾更改为(?:[^\s]+)?(除空格之外的所有字符),您可以将其他字符添加到集合中为了定义你的 URL 的结尾,例如,如果 URL 不能包含,任何一个,你做(?:[^\s,]+)?,等等。

然后,您在正则表达式(^$)上设置开始和结束锚点。当您的 URL 被一些文本包围时,这可能不起作用,因此您可以删除这些锚点并\b在正则表达式的开头添加(单词边界)锚点。

顺便说一句,您可以替换(?:.+)?by.*(?:[^\s,]+)?by`[^\s,]*

你现在有一个这样的正则表达式:'#\b(?:https?://)?(?:www\.)?(?:youtube(?:-nocookie)?\.com/(?:[^/]+/.+/|(?:v|e(?:mbed)?)/|.*[?&]v=)|youtu\.be/)([^"&?/ ]{11})[^\s,]*#x'

注意。我没有分析你的正则表达式的所有逻辑,所以我的评论只对你的正则表达式的开始和结束有价值。

于 2013-10-08T12:34:15.460 回答
1

根本不要使用正则表达式,使用parse_url.

例如:

$parsed_url = parse_url($content);
if (in_array($parsed_url['host'], array('www.youtube.com', 'youtube.com', 'www.youtube-nocookie.com', 'youtube-nocookie.com'))) {
    ## Now look through $parsed_url['query'] for the video ID
    ## Parsing this out is a separate question :)
}
于 2013-10-01T21:47:33.433 回答
1

为什么需要 preg_replace()?str_replace() 在你的情况下应该足够了。此外,您可能需要遍历 $youtubes[0],而不是 $youtubes。再加上简化你的代码!;-)

因此,这应该可以工作:

function aKaFilter( $content ) {
    global $bp;

    $pattern2 = '#^(?:https?://)?(?:www\.)?(?:youtube(?:-nocookie)?\.com/(?:[^/]+/.+/|(?:v|e(?:mbed)?)/|.*[?&]v=)|youtu\.be/)([^"&?/ ]{11})(?:.+)?$#x';
    preg_match_all( $pattern2, $content, $youtubes );

    /* Make sure there's only one instance of each video */
    $youtubes = array_unique( $youtubes[1] );

    if ( $youtubes ) {

        //but we need to watch for edits and if something was already wrapped in html link - thus check for space or word boundary prior
        foreach( $youtubes[0] as $youtube ) {

            $content = str_replace( $youtube, '<span class="video youtube" data-trigger="'.$youtube.'"><img src="http://img.youtube.com/vi/'.$youtube.'/0.jpg"><span class="icon-stack"><i class="icon-circle icon-stack-base"></i><i class="icon-youtube-play"></i></span><span>title</span></span>', $content );
        }
    }

    return $content;
}
于 2013-10-05T18:21:59.223 回答
0

尝试使用网址:

结果为 JSON 格式。 http://gdata.youtube.com/feeds/mobile/videos?alt=json&q=music&format=1,5,6

结果为 xml 格式 http://gdata.youtube.com/feeds/mobile/videos?q=music&format=1,5,6

然后,对于 xml 格式,在 --tag:youtube.com,2008:video:qycqF1CWcXg 上使用正则表达式并检索视频 ID,即本例中的“qycqF1CWcXg”

适用于 JSON 格式的相同步骤。

于 2013-10-11T13:15:17.727 回答