gpt4 book ai didi

php - 用 * PHP 替换 ip 的最后两个八位字节

转载 作者:行者123 更新时间:2023-12-02 15:40:16 24 4
gpt4 key购买 nike

我希望能够用 * 替换最后两个八位字节之间的数字

127.0.0.1 变为 127.0.*.*88.88.88.88 变成 88.88.**.**

我该怎么做?

最佳答案

您可以使用 explode 通过分隔符拆分字符串:

$myIP = "127.0.0.1";
$ipOctets = explode('.', $myIP);
$newIp = $ipOctets[0] . '.' . $ipOctets[1] . '.' . preg_replace('/./', '*', $ipOctets[4]) . '.' . preg_replace('/./', '*', $ipOctets[3]);

关于php - 用 * PHP 替换 ip 的最后两个八位字节,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8191221/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com