3

我有一小段代码检查字符串中的 url 并添加 <a href> 标记以创建链接。我还让它检查 youtube 链接的字符串,然后将 rel="youtube" 添加到 < a> 标记。

如何获取仅将 rel 添加到 youtube 链接的代码?

如何让它为任何类型的图像链接添加不同的 rel?

$text = "http://site.com a site www.anothersite.com/ http://www.youtube.com/watch?v=UyxqmghxS6M here is another site";

$linkstring = preg_replace( '/(http|ftp)+(s)?:(\/\/)((\w|\.)+)(\/)?(\S+)?/i', '<a href="\0">\4</a>', $text ); 
if(preg_match('/http:\/\/www\.youtube\.com\/watch\?v=[^&]+/', $linkstring, $vresult)) {
    $linkstring = preg_replace( '/(http|ftp)+(s)?:(\/\/)((\w|\.)+)(\/)?(\S+)?/i', '<a rel="youtube" href="\0">\4</a>', $text ); 
          $type= 'youtube';
          }
else {
$type = 'none';
}
echo $text;
echo $linkstring, "<br />";
echo $type, "<br />";
4

2 回答 2

2

试试http://simplehtmldom.sourceforge.net/

代码

<?php
include('simple_html_dom.php');

$html = str_get_html('<a href="http://www.youtube.com/watch?v=UyxqmghxS6M">Link</a>');
$html->find('a', 0)->rel = 'youtube';
echo $html;

输出

[username@localhost dom]$ php dom.php
<a href="http://www.youtube.com/watch?v=UyxqmghxS6M" rel="youtube">Link</a>

您可以使用此库构建整个页面 DOM 或简单的单个链接。

检测 URL 的主机名:将 url 传递给 parse_url。parse_url 返回 URL 部分的数组。

代码

print_r(parse_url('http://www.youtube.com/watch?v=UyxqmghxS6M'));

输出

Array
(
    [scheme] => http
    [host] => www.youtube.com
    [path] => /watch
    [query] => v=UyxqmghxS6M
)
于 2012-09-20T05:34:41.853 回答
1

尝试以下操作:

//text
$text = "http://site.com/bounty.png a site www.anothersite.com/ http://www.youtube.com/watch?v=UyxqmghxS6M&featured=true here is another site";

//Youtube links
$pattern = "/(http:\/\/){0,1}(www\.){0,1}youtube\.com\/watch\?v=([a-z0-9\-_\|]{11})[^\s]*/i";
$replacement = '<a rel="youtube" href="http://www.youtube.com/watch?v=\3">\0</a>';
$text = preg_replace($pattern, $replacement, $text);

//image links
$pattern = "/(http:\/\/){0,1}(www\.){0,1}[^\/]+\/[^\s]+\.(png|jpg|jpeg|bmp|gif)[^\s]*/i";
$replacement = '<a rel="image" href="\0">\0</a>';
$text = preg_replace($pattern, $replacement, $text);

请注意,后者只能检测到具有扩展名的图像的链接。因此,不会检测到像 www.example.com?image=3 这样的链接。

于 2012-09-20T05:53:40.520 回答