1

我在拆分字符串时遇到了麻烦,如下所示:什么是保留文本的文本,什么是要在锚点中转换的链接,什么是来自 youtube 的链接,以将其转换为 iframe 标记。

我的脚本如下所示:

$string='This is a link www.dinamomania.net this is a http://www.youtube.com/watch?v=U9LB6qGvdpQ';
echo makelink($string);

 function makeLink($string){

 /*** make sure there is an http:// on all URLs ***/
 $string = preg_replace("/([^\w\/])(www\.[a-z0-9\-]+\.[a-z0-9\-]+)/i", "$1http://$2",$string);
 /*** make all URLs links ***/

$string = preg_replace('/([\w]+:\/\/[\w-?&;#~=\.\/\@]+[\w\/])/i','<a target="_blank" href="$1">$1</A>',$string);

$string = preg_replace('/((http|ftp)\:\/\/)?([w]{3}\.)?(youtube\.)([a-z]{2,4})(\/watch\?v=)([a-zA-Z0-9_-]+)(\&feature=)?([a-zA-Z0-9_-]+)?/', '<iframe style= "margin:15px 0 15px 0;display:block;" width="500" height="300" src="http://www.youtube.com/embed/$7" frameborder="0" allowfullscreen></iframe>',$string);

 /*** make all emails hot links ***/

 $string = preg_replace("/([\w-?&;#~=\.\/]+\@(\[?)[a-zA-Z0-9\-\.]+\.([a-zA-Z]{2,3}[0-9]{1,3})(\]?))/i","<A HREF=\"mailto:$1\">$1</A>",$string);

 return $string;

}

}

它的所有工作方式都应该是这样,我在 iframe 之前得到一个像这样的锚点“>”,那是因为它首先将链接链接到锚点,然后是 youtube 格式的 iframe。所以它是一个锚点的内框。

我正在寻找一个 if 语句来做这样的事情:

if( is link from youtube ) {
    // do the iframe part 
} else {
    // do the anchor part
}

任何帮助/建议将不胜感激。谢谢 !

我带来了这样的东西:

    if (preg_match("/((http|ftp)\:\/\/)?([w]{3}\.)?(youtube\.)([a-z]{2,4})(\/watch\?v=)([a-zA-Z0-9_-]+)(\&feature=)?([a-zA-Z0-9_-]+)?/", $string))
    {
$string = preg_replace('/((http|ftp)\:\/\/)?([w]{3}\.)?(youtube\.)([a-z]{2,4})(\/watch\?v=)([a-zA-Z0-9_-]+)(\&feature=)?([a-zA-Z0-9_-]+)?/', '<iframe style= "margin:15px 0 15px 0;display:block;" width="500" height="300" src="http://www.youtube.com/embed/$7" frameborder="0" allowfullscreen></iframe>',$string);
    } else {
$string = preg_replace('/([\w]+:\/\/[\w-?&;#~=\.\/\@]+[\w\/])/i','<a target="_blank" href="$1">$1</A>',$string);
    }

但它又在做我的 iframe 部分,并且没有任何锚点发生。

4

2 回答 2

2

将此模式用于URL

preg_replace('/([^\'"])((ht|f)tps?:\/\/[\w-?&;#~=\.\/\@]+[\w\/])/i',
    '$1<A target="_blank" href="$2">$2</A>',$string);

并将放置语句放在标签放置IFRAMEA语句之前。

    /*** make all the IFrame links ***/
$string = preg_replace(
'/((http|ftp)\:\/\/)?([w]{3}\.)?(youtube\.)([a-z]{2,4})(\/watch\?v=)([a-zA-Z0-9_-]+)(\&feature=)?([a-zA-Z0-9_-]+)?/', 
'<iframe style= "margin:15px 0 15px 0;display:block;" width="500" height="300" src="http://www.youtube.com/embed/$7" frameborder="0" allowfullscreen></iframe>',
$string);

/*** make all URLs links ***/
$string = preg_replace('/([^\'"])((ht|f)tps?:\/\/[\w-?&;#~=\.\/\@]+[\w\/])/i',
        '$1<A target="_blank" href="$2">$2</A>',$string);

看看它是如何工作的。

于 2013-01-20T07:04:50.960 回答
0

您可以使用正则表达式方法:

if (preg_match("/http://(?:www\.)?youtu(?:be\.com/watch\?v=|\.be/)(\w*)(&(amp;)?[\w\?=]*)?/i", $link))
{
    // It's a Youtube link!
}

但也可以使用这种方法:

$parsedlink = parse_url($link);

if ($parsedlink['host'] == 'www.youtube.com')
{
    // It's a Youtube link!
}
于 2013-01-20T03:56:58.800 回答