strchr()
函数用于查找字符串中的指定字符,并返回该字符及其之后的部分。
参数说明:
haystack
:要在其中查找字符的字符串needle
:要查找的字符before_needle
:可选参数,如果设置为 true
,则返回指定字符之前的部分;如果设置为 false
或省略,则返回指定字符及其之后的部分示例:
$string = "Hello, world!";
$char = ",";
$substring = strchr($string, $char); // 返回 ", world!"
$substring = strchr($string, $char, true); // 返回 "Hello"