PHP

php strchr返回值是什么

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

strchr 是 PHP 中的一个内置函数,它用于在字符串中查找第一次出现某个特定字符的位置

函数原型如下:

string strchr(string $haystack, string $needle): string|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
看了该问题的人还看了