php将url地址转化为完整的a标签链接代码(php为url地址添加a标签)

前端之家收集整理的这篇文章主要介绍了php将url地址转化为完整的a标签链接代码(php为url地址添加a标签)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

需要提取内容如下:

代码如下:
这是第一个A标签,
这是第二个A标签
//www.jb51.cc这是第一个需要被提取URL地址
http://blog.baidu.com这是第二个需要被提取URL地址'。

logo_zh-cn.gif">,这是一个img标签

类似微博中的自动提取URL为超链接地址。即内容提取出来添加A标签,转换成真正的超链接。网上搜索了很久,没有找到一个切实可行的解决方案。大都只是简单的提取URL(A标签img标签内的地址也被提取替换了),并不能满足以上需求。正则表达式中也没发现能够实现提取时过滤掉A标签方法。于是转换了一下思路,“曲线救国”。即,先将所有的A标签img标签正则替换为某一个统一的标记,然后再提取URL地址替换为超链接,最后再将统一的标记还原替换为以前的A标签img标签便解决了。

代码如下:
function linkAdd($content){
//提取替换出所有A标签(统一标记<{link}>)
preg_match_all('/.*?/i',$content,$linkList);
$linkList=$linkList[0];
$str=preg_replace('/.*?/i','<{link}>',$content);

//提取替换出所有的img标签(统一标记<{img}>)
preg_match_all('/]+>/im',$imgList);
$imgList=$imgList[0];
$str=preg_replace('/]+>/im','<{img}>',$str);//提取替换标准的URL地址
$str=preg_replace('(((f|ht){1}tp://)[-a-zA-Z0-9@:%_/+.~#?&//=]+)','',$str);//还原A统一标记为原来的A标签
$arrLen=count($linkList);
for($i=0;$i<$arrLen;$i++){
$str=preg_replace('/<{link}>/',$linkList[$i],$str,1);
}//还原IMG统一标记为原来的img标签
$arrLen2=count($imgList);
for($i=0;$i<$arrLen2;$i++){
$str=preg_replace('/<{img}>/',$imgList[$i],1);
}return $str;
}

$content='
这是第一个A标签,
这是第二个A标签
//www.jb51.cc这是第一个需要被提取URL地址
http://blog.baidu.com这是第二个需要被提取URL地址
logo_zh-cn.gif">,这是一个img标签';
echo linkAdd($content);


返回的内容为:

代码如下:

即为我们想要的内容

例2,

代码如下:
/**
* PHP 版本 在 Silva 代码的基础上修改
* 将URL地址转化为完整的A标签链接代码
*/

function replace_URLtolink($text) {
// grab anything that looks like a URL...
$urls = array(); // build the patterns
$scheme = '(https?://|ftps?://)?';
$www = '([w]+.)';
$ip = '(d{1,3}.d{1,3})';
$name = '([w0-9]+)';
$tld = '(w{2,4})';
$port = '(:[0-9]+)?';
$the_rest = '(/?([w#!:.?+=&%@!-/]+))?';
$pattern = $scheme.'('.$ip.$port.'|'.$www.$name.$tld.$port.')'.$the_rest;
$pattern = '/'.$pattern.'/is'; // Get the URLs
$c = preg_match_all($pattern,$text,$m); if ($c) {
$urls = $m[0];
} // Replace all the URLs
if (! empty($urls)) {
foreach ($urls as $url) {
$pos = strpos('http://',$url); if (($pos && $pos != 0) || !$pos) {
$fullurl = 'http://'.$url;
} else {
$fullurl = $url;
} $link = ''.$url.''; $text = str_replace($url,$link,$text);
}
} return $text;
}

原文链接:https://www.f2er.com/php/25256.html

猜你在找的PHP相关文章