在PHP中,您可以使用strpos()
函數來獲取字符串中子字符串首次出現的位置。下面是一個示例:
$string = "Hello World";
$substring = "World";
$position = strpos($string, $substring);
if ($position === false) {
echo "Substring not found";
} else {
echo "Substring found at position " . $position;
}
這將輸出:
Substring found at position 6
請注意,strpos()
函數區分大小寫。如果要進行不區分大小寫的搜索,可以使用stripos()
函數。