gpt4 book ai didi

php - 替换除 PHP 中第一次出现以外的所有特定字符

转载 作者:可可西里 更新时间:2023-10-31 23:05:24 24 4
gpt4 key购买 nike

示例

  • 输入 = 1.1.0.1
  • 预期产出 = 1.101

最佳答案

你可以使用 substr() str_replace() 相当容易:

$str = '1.1.0.1';
$pos = strpos($str,'.');
if ($pos !== false) {
$str = substr($str,0,$pos+1) . str_replace('.','',substr($str,$pos+1));
}
echo $str;

关于php - 替换除 PHP 中第一次出现以外的所有特定字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2167609/

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