PHP - 添加链接到字符串中的URL

Ale*_*and 9 php regex string url function

我有一个函数,将<a href>在链接之前和链接</a>之后添加标记.但是,它打破了一些网页.你会如何改进这个功能?谢谢!

function processString($s) 
{
    // check if there is a link

    if(preg_match("/http:\/\//",$s))
    {
        print preg_match("/http:\/\//",$s);


        $startUrl =  stripos($s,"http://");

        // if the link is in between text
        if(stripos($s," ",$startUrl)){
            $endUrl = stripos($s," ",$startUrl);
        }
        // if link is at the end of string
        else {$endUrl = strlen($s);}

        $beforeUrl = substr($s,0,$startUrl);
        $url = substr($s,$startUrl,$endUrl-$startUrl);
        $afterUrl = substr($s,$endUrl);

        $newString = $beforeUrl."<a href=\"$url\">".$url."</a>".$afterUrl;

        return $newString;
    }

    return $s;
}
Run Code Online (Sandbox Code Playgroud)

bco*_*sca 19

function processString($s) {
    return preg_replace('/https?:\/\/[\w\-\.!~#?&=+\*\'"(),\/]+/','<a href="$0">$0</a>',$s);
}
Run Code Online (Sandbox Code Playgroud)

  • 你忘记了#inside的地址 - 所以更正确的版本是`preg_replace('/ https?:\ /\/ [\ w\ - \.!〜#?&= +\*\'"(),\ /] + /','<a href="$0"> $ 0 </a>',$ text)` (4认同)