PHP stripos()函數用于在字符串中查找子字符串的第一次出現的位置(不區分大小寫)。
函數的語法為:
stripos(string $haystack, mixed $needle [, int $offset = 0]): int|false
參數說明:
$haystack
:被搜索的字符串。
$needle
:要搜索的子字符串。
$offset
:可選參數,指定搜索起始位置,默認為0。
返回值:
如果找到子字符串,則返回第一次出現的位置索引(從0開始計數)。
如果未找到子字符串,則返回false。
示例:
$haystack = "Hello, world!";
$needle = "world";
$position = stripos($haystack, $needle);
if ($position !== false) {
echo "子字符串 '$needle' 在字符串 '$haystack' 的第一次出現位置是 $position";
} else {
echo "未找到子字符串 '$needle' 在字符串 '$haystack' 中";
}
輸出結果為:
子字符串 'world' 在字符串 'Hello, world!' 的第一次出現位置是 7