温馨提示×

php strchr能忽略空格吗

PHP
小樊
81
2024-12-07 13:02:37
栏目: 编程语言

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函数。

0