程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> php將url地址轉化為完整的a標簽鏈接代碼(php為url地址添加a標簽)

php將url地址轉化為完整的a標簽鏈接代碼(php為url地址添加a標簽)

編輯:PHP綜合

需要提取的內容如下:

復制代碼 代碼如下:
<a href="http://baidu.com">http://baidu.com</a>這是第一個A標簽,
<a href="http://blog.baidu.com">成長腳印-專注於互聯網發展</a>這是第二個A標簽。
http://www.jb51.net這是第一個需要被提取的URL地址,
http://blog.baidu.com這是第二個需要被提取的URL地址'。
<img border="0" alt="" src="http://baidu.com/css/sitelogo_zh-cn.gif">,這是一個IMG標簽

類似微博中的自動提取URL為超鏈接地址。即內容提取出來添加A標簽,轉換成真正的超鏈接。網上搜索了很久,沒有找到一個切實可行的解決方案。大都只是簡單的提取URL(A標簽和IMG標簽內的地址也被提取替換了),並不能滿足以上需求。正則表達式中也沒發現能夠實現提取時過濾掉A標簽的方法。於是轉換了一下思路,“曲線救國”。即,先將所有的A標簽和IMG標簽正則替換為某一個統一的標記,然後再提取URL地址替換為超鏈接,最後再將統一的標記還原替換為以前的A標簽和IMG標簽便解決了。

復制代碼 代碼如下:
function linkAdd($content){
 //提取替換出所有A標簽(統一標記<{link}>)
 preg_match_all('/<a.*?href=".*?".*?>.*?</a>/i',$content,$linkList);
 $linkList=$linkList[0];
 $str=preg_replace('/<a.*?href=".*?".*?>.*?</a>/i','<{link}>',$content);

 //提取替換出所有的IMG標簽(統一標記<{img}>)
 preg_match_all('/<img[^>]+>/im',$content,$imgList);
 $imgList=$imgList[0];
 $str=preg_replace('/<img[^>]+>/im','<{img}>',$str);

 //提取替換標准的URL地址
 $str=preg_replace('(((f|ht){1}tp://)[-a-zA-Z0-9@:%_/+.~#?&//=]+)','<a href="\0" target="_blank">\0</a>',$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],$str,1);
 }

 return $str;
}

$content='
<a href="http://baidu.com">http://baidu.com</a>這是第一個A標簽,
<a href="http://blog.baidu.com">成長腳印-專注於互聯網發展</a>這是第二個A標簽。
http://www.jb51.net這是第一個需要被提取的URL地址,
http://blog.baidu.com這是第二個需要被提取的URL地址。
<img border="0" alt="" src="http://baidu.com/css/sitelogo_zh-cn.gif">,這是一個IMG標簽';
echo linkAdd($content);

返回的內容為:

復制代碼 代碼如下:
<a href="http://baidu.com">http://baidu.com</a>這是第一個A標簽, <a href="http://blog.baidu.com">成長腳印-專注於互聯網發展</a>這是第二個A標簽。 <a href="http://www.jb51.net" target="_blank">http://www.jb51.net</a>這是第一個需要被提取的URL地址, <a href="http://blog.baidu.com" target="_blank">http://blog.baidu.com</a>這是第二個需要被提取的URL地址。
<img border="0" alt="" src="http://baidu.com/css/sitelogo_zh-cn.gif">,這是一個IMG標簽

即為我們想要的內容。

例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}.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;
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved