PHP - Bir dizesinde bir URL'ye bağlantı ekle

0 Cevap php

Ben bağlantı sonra bir bağlantı ve </a> önce <a href> etiketi katacak bir işlevi var. Ancak, bazı web sayfaları için keser. Nasıl bu işlevini geliştirmek istiyorsunuz? Teşekkürler!

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

0 Cevap