在php中添加单词的超链接

时间:2017-05-04 11:08:12

标签: php hyperlink words

我在buildinternet.com找到了这个功能。

function tag_it($text) {
    $text = preg_replace("/:(\w+):/", '<a href="http://www.example.com/page/$1/" title="$1" target="_blank">$1</a>',$text);
    return $text;
}

它的作用是为“:”中包含的单词添加超链接,问题是它只适用于单个单词,并且它不适用于具有单引号的单词。

所以,如果我这样做,

$test = "one :word1:, :two words:, :this is a phrase:, this has a single quote :don't: or :don't forget:.";
echo tag_it($test);

仅对:word1:将添加一个超链接,其余的将被忽略。

我不知道太多的PHP,如果有人可以使用多个单词并使用单引号,我会很感激。

谢谢!

修改

所以我尝试了以下内容,为“#”

中的单词添加了不同的链接
function tag_it($text) {
$out = preg_replace_callback(
    "/:([^\:]+):/",
    function($m) {
        $linkText = $m[1];
        $link = str_replace('"', '', $m[1]);
        $link = str_replace("'", "", $m[1]);
        $link = str_replace(" ", "_", $link);

        return '<a href="http://www.example.com/page/'.$link.'/" title="'.$linkText.'" target="_blank">'.$linkText.'</a>';
    },
    preg_replace_callback(
        "/#([^\#]+)#/",
        function($m1) {
            $linkText1 = $m1[1];
            $link1 = str_replace('"', '', $m1[1]);
            $link1 = str_replace("'", "", $m1[1]);
            $link1 = str_replace(" ", "_", $link1);

            return '<a href="http://www.example.com/blog/'.$link1.'/" title="'.$linkText1.'" target="_blank">'.$linkText1.'</a>';
        },
        $text
    )
);
return $out;
}
$test = "one :word:, #two words#, :this is a phrase:, this has a single quote :don:'t or :don't forget:.";
echo tag_it($test);

我得到了这个

one word, two_words,_/" title="//www.example.com/blog/two_words/" title="two words" target="_blank">two words, " target="_blank">//www.example.com/blog/two_words/" title="two words" target="_blank">two words, this is a phrase, this has a single quote don't or don't forget:.

它似乎适用于“:”中包含的第一个单词,并且正在尝试使用“#”中包含的单词,但是在此过程中发生了一些事情,我无法弄明白。

非常感谢任何提示。

谢谢!

5 个答案:

答案 0 :(得分:1)

将函数中的关键行更改为以下内容:

$text = preg_replace("/:([^:]+):/", '<a href="http://www.example.com/page/$1/" title="$1" target="_blank">$1</a>', $text);

答案 1 :(得分:1)

将此/:(\w+):/更改为此/:([^:]+):/

答案 2 :(得分:1)

试试这个希望,这个简单的人会帮助你...

正则表达式: :([^\:]+):

  

:([^\:]+):它将匹配:,然后全部匹配:,然后:结尾

Try this code snippet here

<?php
ini_set('display_errors', 1);
$test = "one :word1:, :two words:, :this is a phrase:, this has a single quote :don't: or :don't forget:.";
echo tag_it($test);
function tag_it($text)
{
    $text = preg_replace("/:([^\:]+):/", '<a href="http://www.example.com/page/$1/" title="$1" target="_blank">$1</a>', $text);
    return $text;
}

答案 3 :(得分:0)

我会让你完成它,上面都是有效的,但是给你留下断开的链接,所以建立在它们之上,我会做类似的事情:

function tag_it($text) {
    $out = preg_replace_callback(
    "/:([^:]+):/",
    function($m) {
        $linkText = $m[1];
        $link = str_replace('"', "", $m[1]);
        $link = str_replace("'", "", $m[1]);
        return '<a href="http://www.example.com/page/'.$link.'/" title="'.$linkText.'" target="_blank">'.$linkText.'</a>';
    },
    $text);
    return $out;
}

您需要完成它以使用 - 或_或某些东西替换空格,但应该很容易实现它。

答案 4 :(得分:0)

要回答我的&#34; 编辑:&#34;,我已经找到了问题。

这是完整的功能

function tag_it($text) {
    $out = preg_replace_callback(
        "/:([^\:]+):/",
        function($m) {
            $linkText = $m[1];
            $link = str_replace('"', '', $m[1]);
            $link = str_replace("'", "", $m[1]);
            $link = str_replace(" ", "_", $link);

            return '<a href="http://www.example.com/page/'.$link.'/" title="'.$linkText.'" target="_blank">'.$linkText.'</a>';
        },$text
    );

    $out = preg_replace_callback(
        "/#([^\#]+)#/",
        function($m) {
            $linkText = $m[1];
            $link = str_replace('"', '', $m[1]);
            $link = str_replace("'", "", $m[1]);
            $link = str_replace(" ", "_", $link);

            return '<a href="http://www.example.com/blog/'.$link.'/" title="'.$linkText.'" target="_blank">'.$linkText.'</a>';
        },$out
    );

    $out = preg_replace_callback(
        "/@([^\@]+)@/",
        function($m) {
            $linkText = $m[1];
            $link = str_replace('"', '', $m[1]);
            $link = str_replace("'", "", $m[1]);
            $link = str_replace(" ", "_", $link);

            return '<a href="http://www.example.com/article/'.$link.'/" title="'.$linkText.'" target="_blank">'.$linkText.'</a>';
        },$out
    );

    return $out;
}


$test = "one :word:, #two words#, @this is a phrase@, this has a single quote @don't@ or :don't forget:.";
echo tag_it($test);