在處理字串時,我們經常需要將一個字串插入另一個字串中的特定位置。 PHP 為此任務提供了一個方便的函數:substr_replace()。
使用substr_replace() 插入字串
要在指定位置插入字串,請使用以下語法:
<code class="php">$newstr = substr_replace($oldstr, $str_to_insert, $pos, 0);</code>
理解偏移參數
$pos 參數表示原始字串中將發生插入的偏移量。它可以是正數或負數:
例如,以下程式碼在原始字串中的位置 5 處插入字串「test」:
<code class="php">$oldstr = "Hello World!"; $newstr = substr_replace($oldstr, "test", 5, 0);</code>
結果:
Hello test World!
以上是如何在PHP中的特定位置插入字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!