在 PHP 中,您可以使用 substr_replace() 函数将一个字符串插入到另一个字符串中的指定位置。要使用此函数,您需要确定要插入新字符串的子字符串的位置。
例如,如果您使用 strpos 检索子字符串的位置,您可以使用 substr_replace() 继续插入。该函数的语法如下:
<code class="php">$newstr = substr_replace($oldstr, $str_to_insert, $pos, 0);</code>
在此代码片段中,$pos 表示 $oldstr 中要插入 $str_to_insert 的位置。 $pos 参数在函数文档中被称为“偏移量”。
如 PHP 文档中所述:
offset<br>If offset is non-negative, the replacing will begin at the offset'th offset into string.<br> If offset is negative, the replacing will begin at the offset'th character from the end of string.
这意味着非负 $pos 表示距应插入的字符串开头的距离,而负 $pos 从字符串末尾开始计数。
例如,以下代码将字符串“inserted”插入到字符串的第五个字符之后原始字符串:
<code class="php">$oldstr = "Hello World!"; $pos = 5; $str_to_insert = "inserted"; $newstr = substr_replace($oldstr, $str_to_insert, $pos, 0); echo $newstr; // Output: Hello inserted World!</code>
以上是如何在PHP中的特定位置插入字符串?的详细内容。更多信息请关注PHP中文网其他相关文章!