php strpos函數(shù)用于在字符串中查找指定的子字符串,并返回第一個匹配的位置。其用法如下:
strpos(string $haystack, mixed $needle, int $offset = 0): int|false
參數(shù)說明:
返回值:
示例:
$pos = strpos("Hello World", "World");
echo $pos; // 輸出 6
$pos = strpos("Hello World", "world");
echo $pos; // 輸出 false
注意事項(xiàng):