在PHP中,可以使用substr()函數來獲取字符串的子串(substring)。該函數的語法如下:
substr(string $string, int $start [, int $length]);
其中,$string是要獲取子串的原始字符串,$start是子串的起始位置(從0開始計數),$length是可選參數,指定要獲取的子串的長度。
例如,要獲取字符串"Hello World"中的子串"World",可以使用以下代碼:
$str = "Hello World";
$subStr = substr($str, 6);
echo $subStr; // 輸出:World
如果要獲取子串"Hello",可以指定長度參數:
$str = "Hello World";
$subStr = substr($str, 0, 5);
echo $subStr; // 輸出:Hello
注意,當省略$length參數時,將會獲取從$start位置到字符串末尾的所有字符。