php 子字符串删除?

发布于 2024-10-06 10:12:45 字数 273 浏览 3 评论 0原文

我的数据库中有一个游戏 IP,如下所示:"271.29.248.23:27912"

我希望子字符串采用最后 5 个数字“27912”,并且我还想删除 “:”。 这可能吗?有人可以帮助我吗?

如果可能的话,我希望数字是这样的,这样会更容易...

$ip = "271.29.248.23";
$port = "27912";

请帮助我,我需要这个脚本:(

I have an game ip in my database, like so: "271.29.248.23:27912"

I want the substring to take the last 5 numbers "27912" and also i want to delete the ":".
Is that possible and could someone help me?

And if possible i would like the numbers to be like this so it would be easier...

$ip = "271.29.248.23";
$port = "27912";

Please help me, i need this for a script :(

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

路还长,别太狂 2024-10-13 10:12:45
 list($ip, $port) = explode(":", "$your_string:");
 list($ip, $port) = explode(":", "$your_string:");
永言不败 2024-10-13 10:12:45

您还可以使用 parse_url,它将处理更多情况

$url = "271.29.248.23:27912";
print_r(parse_url($url));

Array
(
    [host] => 271.29.248.23
    [port] => 27912
)

You could also use parse_url, which will handle more cases:

$url = "271.29.248.23:27912";
print_r(parse_url($url));

Prints:

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