php – 如何使用’PREG’或’HTACCESS’删除URI中的多个斜杠
作者:互联网
如何使用’PREG’或’HTACCESS’删除URI中的多个斜杠
site.com/edition/new/// – > site.com/edition/new/
site.com/edition///new/ – > site.com/edition/new/
谢谢
解决方法:
在正则表达式中使用加号表示出现一个或多个前一个字符.所以我们可以在preg_replace中添加它来替换一个或多个/只出现一个
$url = "site.com/edition/new///";
$newUrl = preg_replace('/(\/+)/','/',$url);
// now it should be replace with the correct single forward slash
echo $newUrl
标签:htaccess,preg-split,php,preg-match,preg-replace 来源: https://codeday.me/bug/20191006/1862342.html