提取替換子字串

可以使用陣列(方括號)語法以及大括號語法來提取單個字元。這兩種語法只返回字串中的單個字元。如果需要多個字元,則需要一個函式,即 - substr

與 PHP 中的所有內容一樣,字串是 0-indexed。

$foo = 'Hello world';

$foo[6]; // returns 'w'
$foo{6}; // also returns 'w'

substr($foo, 6, 1); // also returns 'w'
substr($foo, 6, 2); // returns 'wo'

字串也可以使用相同的方括號和大括號語法一次更改一個字元。替換多個字元需要一個函式 ie- substr_replace

$foo = 'Hello world';

$foo[6] = 'W'; // results in $foo = 'Hello World'
$foo{6} = 'W'; // also results in $foo = 'Hello World'

substr_replace($foo, 'W', 6, 1); // also results in $foo = 'Hello World'
substr_replace($foo, 'Whi', 6, 2); // results in 'Hello Whirled'
// note that the replacement string need not be the same length as the substring replaced