从sql数据中检测链接,并仅以文本形式显示50个字母

时间:2019-02-09 13:06:15

标签: php url preg-replace preg-match

我一直在使用优惠券代码的网站,并且能够修改某些设置,但这似乎让我感到困扰...

 <?php $reg_exUrl = "/(http|https|ftp|ftps)\:\/\/[a-zA-Z0-9\-\.]+\.[a-zA-Z]{2,3}(\/\S*)?/";
    $text = $item->description;               
    if(preg_match($reg_exUrl, $text, $url)) {
        $linktext = substr($url[0], 0, 50);
        $text1 = preg_replace($reg_exUrl, '<a href="'.$url[0].'" rel="nofollow"><b>'.$linktext.'...</b></a>', $text);
    } 
    else 
    {
        $text1= $text;
    }
    $modeddescription = $text ; //string retrieved from SQL ?> 
<?php echo ( !empty( $item->description ) ? '<span>' . nl2br($text1) . '</span>' : t( 'theme_no_description', 'No description.' ) ); ?>

上面的代码从SQL输出优惠券代码的描述,并且应该从SQL文本数据中检测链接。 它的作用是仅检测第一个链接,并且如果该文本中有10个链接,则所有显示的10个链接将是相同的... 例如,如果文字是

http://google.com and http://facebook.com are big companies.
a good example for shopping site is http://amazon.com

它将输出

http://google.com and http://google.com are big companies.
a good example for shopping site is http://google.com

我希望那里的人能帮助我修复它。 我能够使用其他代码并单独检测所有链接,但是我真的不想在页面中显示500个字符的长链接。只希望显示至少前50个字母作为链接标题。

此代码能够检测所有单个链接,但是如何在其中添加行距和50个字符的限制?

$string = preg_replace( "~[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]~","<a href=\"\\0\">\\0</a>", $text);
echo ".$string.";?>

1 个答案:

答案 0 :(得分:0)

preg_replace_callback()是适合此工作的工具。这样,您就可以进行一次preg_调用,然后有条件地修改替换值。

代码:(Demo

$pattern = "~(?:f|ht)tps?://[a-z\d.-]+\.[a-z]{2,3}\S*~i";

$text = 'http://google.com
and http://facebook.com?12345678901234567890123456789012345678901234567890 are big companies.
A good example for shopping site is http://amazon.com';

echo preg_replace_callback($pattern, function($m) {
    return "<a href=\"{$m[0]}\" rel=\"nofollow\"><b>" . (strlen($m[0]) > 50 ? substr($m[0], 0, 50) . "..." : $m[0]) . "</b></a>";
}, $text);

输出:

<a href="http://google.com" rel="nofollow"><b>http://google.com</b></a>
and <a href="http://facebook.com?12345678901234567890123456789012345678901234567890" rel="nofollow"><b>http://facebook.com?123456789012345678901234567890...</b></a> are big companies.
A good example for shopping site is <a href="http://amazon.com" rel="nofollow"><b>http://amazon.com</b></a>