stripos函數是用來查找字符串在另一個字符串中第一次出現的位置(不區分大小寫),如果找到了則返回該位置的索引值,如果沒有找到則返回false。
示例代碼:
$string = "Hello World";
$substring = "world";
$position = stripos($string, $substring);
if($position !== false) {
echo "字符串 '$substring' 在 '$string' 中的位置是:$position";
} else {
echo "在 '$string' 中未找到字符串 '$substring'";
}
輸出結果為:字符串 ‘world’ 在 ‘Hello World’ 中的位置是:6