通过substr_replace
,我可以在特定索引中插入一个字符串:
$a = 'abcdefg';
echo substr_replace($a, '1', 2, 0); // ab1cdefg
但是,是否可以仅使用 1 在特定位置插入 2-3 个字符串substr_replace
?(或其他内置函数)例如:
$a = 'abcdefg';
$b = array('1', '2', '3');
$c = array(1, 2, 4);
echo substr_replace($a, $b, $c, 0); // a1b2cd3efg
我尝试了该代码,但它返回了一个错误:
警告: substr_replace() [function.substr-replace]: 'from' 和 'len' 应该是同一类型 - 数值或数组
谢谢...