温馨提示×

php strchr函数的用法及参数说明是什么

PHP
小樊
82
2024-08-10 06:24:33
栏目: 编程语言

strchr() 函数用于查找字符串中的指定字符,并返回该字符及其之后的部分。

参数说明:

  • haystack:要在其中查找字符的字符串
  • needle:要查找的字符
  • before_needle:可选参数,如果设置为 true,则返回指定字符之前的部分;如果设置为 false 或省略,则返回指定字符及其之后的部分

示例:

$string = "Hello, world!";
$char = ",";
$substring = strchr($string, $char); // 返回 ", world!"

$substring = strchr($string, $char, true); // 返回 "Hello"

0