strchr()
函數用于查找字符串中的指定字符,并返回該字符及其之后的部分。
參數說明:
haystack
:要在其中查找字符的字符串needle
:要查找的字符before_needle
:可選參數,如果設置為 true
,則返回指定字符之前的部分;如果設置為 false
或省略,則返回指定字符及其之后的部分示例:
$string = "Hello, world!";
$char = ",";
$substring = strchr($string, $char); // 返回 ", world!"
$substring = strchr($string, $char, true); // 返回 "Hello"