在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中文網其他相關文章!