PHP substr 查询 - 裁剪 URL

发布于 2024-10-17 06:00:57 字数 108 浏览 4 评论 0原文

我目前有字符串: “/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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

森林散布 2024-10-24 06:00:57

好吧,让我们看一下:http://php.net/manual/en/function。 substr.php

方法签名看起来像这样:

字符串 substr ( 字符串 $string , int
$start [, int $length ] )

如果省略 length,则为子串
从开始到结束
将返回字符串。

所以我想我们可以这样做来获得第 3 个及以后的角色。

substr("/en/sports/football/", 3);

Well, lets take a look: http://php.net/manual/en/function.substr.php

The method signature looks something like this:

string substr ( string $string , int
$start [, int $length ] )

If length is omitted, the substring
starting from start until the end of
the string will be returned.

So I guess we could do something like this to get characters 3 and onward.

substr("/en/sports/football/", 3);

时光磨忆 2024-10-24 06:00:57

explode() on '/',丢弃不需要的目录,然后 implode() on '/'

explode() on '/', discard the directory you don't want, then implode() on '/'

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文