PHP中的substr_replace()
函數用于在字符串中插入一個字符串,并返回被替換的字符串。其語法如下:
substr_replace($original_string, $insert_string, $position, $length);
以下是各參數的說明:
$original_string
:必需。原始字符串。$insert_string
:必需。要插入的字符串。$position
:必需。要插入字符串的位置(從0開始計數)。$length
:可選。要替換的字符數。如果省略,則不會替換原始字符串中的任何字符,而只是插入新字符串。示例:
$original_string = "Hello, world!";
$insert_string = " beautiful";
$position = 7;
$length = 5;
$result = substr_replace($original_string, $insert_string, $position, $length);
echo $result; // 輸出 "Hello, beautiful world!"
在這個例子中,substr_replace()
函數將beautiful
字符串插入到Hello, world!
字符串的第7個位置,并替換了原來的5個字符。