繁体   English   中英

php 在字符串中使用 is.gd api 缩短所有网址并将它们链接起来

[英]php shorten all urls with is.gd api in a string and linkify them

正如标题所说,我正在尝试在字符串中使用 is.gd api 缩短所有网址并将它们链接起来。

function link_isgd($text)
{
    $regex = '@(https?://([-\w\.]+[-\w])+(:\d+)?(/([\w/_\.#-~]*(\?\S+)?)?)?)@';
    preg_match_all($regex, $text, $matches);

    foreach($matches[0] as $longurl)
    {
        $tiny = file_get_contents('http://isnot.gd/api.php?longurl='.$longurl.'&format=json');
        $json = json_decode($tiny, true);

        foreach($json as $key => $value)
        {
            if ($key == 'errorcode')
            {
                $link = $longurl;
            }
            else if ($key == 'shorturl')
            {
                $link = $value;
            }
        }
    }
    return preg_replace($regex, '<a href="'.$link.'" target="_blank">'.$link.'</a>', $text);
}

$txt = 'Some text with links https://www.abcdefg.com/123 blah blah blah https://nooodle.com';

echo link_isgd($txt);

这就是我到目前为止所得到的,如果字符串中只有 1 个 url ,则链接工作和缩短工作也是如此,但是如果有 2 个或更多,它们最终都相同。

如果有 2 个或更多,它们的结果都是一样的

注意: is.gd不允许在帖子中发布,所以我以为我发布了一个此处不允许的短链接,所以我不得不将其更改为isnot.gd

您的变量$link不是数组,因此它只需要$link的最后分配值。 您可以用str_replace替换preg_replace并通过匹配和链接传递 arrays。

您还可以使用preg_replace_callback()并且可以将 $matches 直接传递给 function 将替换为链接。 https://stackoverflow.com/a/9416265/7082164

function link_isgd($text)
{
    $regex = '@(https?://([-\w\.]+[-\w])+(:\d+)?(/([\w/_\.#-~]*(\?\S+)?)?)?)@';
    preg_match_all($regex, $text, $matches);

    $links = [];

    foreach ($matches[0] as $longurl) {
        $tiny = file_get_contents('http://isnot.gd/api.php?longurl=' . $longurl . '&format=json');
        $json = json_decode($tiny, true);

        foreach ($json as $key => $value) {
            if ($key == 'errorcode') {
                $links[] = $longurl;
            } else if ($key == 'shorturl') {
                $links[] = $value;
            }
        }
    }
    $links = array_map(function ($el) {
        return '<a href="' . $el . '" target="_blank">' . $el . '</a>';
    }, $links);

    return str_replace($matches[0], $links, $text);
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM