strchr
是 PHP 中的一个内置函数,用于在字符串中查找第一次出现某个特定字符的位置
function strchr($haystack, $needle) {
return strpos($haystack, $needle);
}
使用示例:
$haystack = "Hello, World!";
$needle = "W";
$position = strchr($haystack, $needle);
if ($position !== false) {
echo "The character '{$needle}' is found at position {$position}.";
} else {
echo "The character '{$needle}' is not found in the string.";
}
输出结果:
The character 'W' is found at position 7.
请注意,strchr
返回的是字符在字符串中首次出现的位置,位置索引从 0 开始。