str_sub
函數在 PHP 中并不存在。可能您想要使用的是 substr_replace
函數,該函數用于在字符串中替換指定部分的文本。
substr_replace
函數的語法如下:
substr_replace($original_string, $insert_string, $position, $length);
參數說明:
$original_string
:原始字符串,將要進行替換操作。$insert_string
:要插入到原始字符串中的新字符串。$position
:要替換的子字符串在原始字符串中的起始位置(從 0 開始計數)。$length
:要替換的字符數。如果省略此參數,將替換原始字符串中從 $position
開始的所有字符。示例:
$original_string = "Hello, world!";
$insert_string = " beautiful";
$position = 7;
$length = 8;
$result = substr_replace($original_string, $insert_string, $position, $length);
echo $result; // 輸出 "Hello, beautiful world!"
在這個示例中,我們將 beautiful
插入到 Hello, world!
字符串的第 7 個位置,替換了 8 個字符。