5

我目前正在编写一个与 twitter 一起使用的短 url 脚本。

目前我正在将我想要的推文文本输入一个带有长 url 的文本区域。到目前为止,我有以下检测网址:

$regex = "/(http|https|ftp|ftps)\:\/\/[a-zA-Z0-9\-\.]+\.[a-zA-Z]{2,3}(\/\S*)?/";
if ( preg_match( $regex, $text, $url ) ) { // $url is now the array of urls
   echo $url[0];
}

输入推文后,它将如下所示:

hi here is our new product, check it out: www.mylongurl.com/this-is-a-very-long-url-and-needs-to-be-shorter

然后,我会生成一些随机字符以附加到新 url 的末尾,所以它最终会是这样的:shorturl.com/ghs7sj。

单击时,shorturl.com/ghs7sj 会将您重定向到 www.mylongurl.com/this-is-aver-long-url-and-needs-to-be-shorter。这一切都很好。

我的问题是推文文本仍然包含长网址。有没有办法可以用短网址替换长网址?我需要一些新代码吗?或者我可以调整以上内容来做到这一点吗?

我想要的结果是这样的:

 hi here is our new product, check it out: shorturl.com/ghs7sj

这是基于 wordpress 的,因此所有信息当前都存储在 posts 和 post_meta 表中。请注意,推文中只会有 1 个网址。

4

2 回答 2

6

Can you just use PHP's str_replace() function? Something like

str_replace($url, $short_url, $text);
于 2013-10-14T09:04:54.553 回答
4

您可以使用以下方法在回调函数中进行替换preg_replace_callback()

$regex = "/(http|https|ftp|ftps)\:\/\/[a-zA-Z0-9\-\.]+\.[a-zA-Z]{2,3}(\/\S*)?/";
$text = preg_replace_callback($regex, function($url) { 
    // do stuff with $url[0] here
    return make_short_url($url[0]);
}, $text);
于 2013-10-14T09:04:08.893 回答