strchr
是 PHP 中的一个内置函数,它用于在字符串中查找第一次出现某个特定字符的位置
函数原型如下:
string strchr(string $haystack, string $needle): string|false
$haystack
:必需。需要搜索的字符串。$needle
:必需。需要在$haystack
中查找的字符或字符串。
返回值:
- 如果找到
$needle
,则返回$needle
在$haystack
中首次出现的位置的索引。 - 如果没有找到
$needle
,则返回false
。
示例:
$haystack = "Hello, World!"; $needle = "W"; $result = strchr($haystack, $needle); if ($result) { echo "The first occurrence of '{$needle}' is at index: " . strpos($result, $needle); } else { echo "'{$needle}' not found in the string."; }
输出:
The first occurrence of 'W' is at index: 7