find all urls (links) in text with php(使用php查找文本中的所有网址(链接))
问题描述
我有这个代码正则表达式,它应该将各种不同的网址转换为某些文本中的链接.
I have this code regex, which should transform all kind of diffrent urls into links in some text.
preg_replace 代码是:
The preg_replace code is:
$regex = '@((https?://)?([-w]+.[-w.]+)+w(:d+)?(/([-w/_.]*(?S+)?)?)*)@';
$text = preg_replace($regex, '<a href="$1">$1</a>', $item);
现在它几乎适用于您可以想象的所有 URL,但我遇到的问题是逗号和 URL 中的特殊字符...
now it works for almost all URLs you can imagine, but the problems i have are commas, and special characters in URLs...
问题让我:
http://www.sdfsdfsdf.sd/si/391,1000,1/more.html
http://sdfsddsdf-sdfsdfds.sr/组件/选项,com_contact/Itemid,3/lang,si/
在 stackoverflow 上很有趣,这两个都可以:)
Funny here at stackoverflow those two are OK :)
谢谢,最好的问候,
推荐答案
您必须稍微编辑一下正则表达式.这将完成这项工作:
You have to edit your regex a bit. This will do the job:
$regex = '@((https?://)?([-w]+.[-w.]+)+w(:d+)?(/([-w/_.,]*(?S+)?)?)*)@';
如您所见,此处添加了一个逗号 [-w/_.,]
仅此而已.
As you can see, there's a comma added here [-w/_.,]
and nothing more.
享受吧!
这篇关于使用php查找文本中的所有网址(链接)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用php查找文本中的所有网址(链接)
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- PHP - if 语句中的倒序 2021-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01