在PHP 的特定位置插入字串
問題:
問題:問題:
PHP 程式員經常遇到的問題面臨將一個字串插入另一個字串中的特定位置的需要。這可以藉助 PHP 的內建函數來完成。
答案:
<code class="php">substr_replace(string $string, string $replacement, int $offset[, int $length])</code>要在指定位置插入字串,可以使用
substr_replace()
函數。此函數的工作原理是從給定位置開始用新字串取代字串的一部分。$offset:
開始替換的位置。<code class="php">$pos = strpos($oldstr, $substring); $newstr = substr_replace($oldstr, $str_to_insert, $pos + strlen($substring), 0);</code>substr_replace()
在該位置後面插入所需的字串。
以上是如何在 PHP 中的特定位置插入字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!