PHP的strchr
函数用于在字符串中查找第一次出现某个字符的位置
例如,如果你想在字符串"Hello World"
中查找空格并忽略它,你可以这样做:
$str = "Hello World";
$char = " ";
$position = strpos($str, $char);
if ($position !== false) {
echo "The position of the first space is: " . $position;
} else {
echo "No space found in the string.";
}
在这个例子中,strpos
函数会返回空格在字符串中的位置(即1),而不是使用strchr
函数。