PHP substr 查询 - 裁剪 URL
我目前有字符串: “/en/sports/football/”
我如何减去这个字符串来实现:
“/sports/football/”
非常感谢您的指点。
I currently have the string:
"/en/sports/football/"
How do I substr this string to achieve:
"/sports/football/"
Many thanks for any pointers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好吧,让我们看一下:http://php.net/manual/en/function。 substr.php
方法签名看起来像这样:
所以我想我们可以这样做来获得第 3 个及以后的角色。
Well, lets take a look: http://php.net/manual/en/function.substr.php
The method signature looks something like this:
So I guess we could do something like this to get characters 3 and onward.
explode()
on '/',丢弃不需要的目录,然后implode()
on '/'explode()
on '/', discard the directory you don't want, thenimplode()
on '/'