如何在PHP中的特定位置插入字符

问题描述 投票:0回答:1
$str="Hello From Other Side ";
$add = rand(20,50);

如何在字符串中的每个包机在特定位置后通过控制位置将数字或包机添加为(25)

结果

He25llo Fr25om Ot26her S25ide

谢谢

php arrays string position add
1个回答
0
投票

您可以使用substr()功能!

如果您想将25插入位置2的$str="Hello From Other Side ";中!

你可以做

$pos=2;
$new_string= substr($str, 0, $pos). "25" . substr($str, $pos);

结果将是:

"He25llo From Other Side "
© www.soinside.com 2019 - 2024. All rights reserved.