温馨提示×

php strchr返回值是什么

PHP
小樊
81
2024-12-07 12:51:38
栏目: 编程语言

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

0