Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道用于验证 URL 的最新正则表达式?我在 Google 上找到了一些,但它们在测试时都允许使用垃圾 URL 即 (www.google_com)。
我的正则表达式知识不是那么广博,所以我讨厌把在压力下会失败的东西放在一起。
谢谢。
您可以在 PHP 中使用过滤器功能
$filtered = filter_var($url, FILTER_VALIDATE_URL);
http://uk3.php.net/manual/en/function.filter-var.php
不是每个问题都应该用正则表达式来回答。
http://php.net/manual/en/function.parse-url.php