在 PHP 中,`strpos()` 函數用于查找字符串中指定子串的位置。它返回第一次出現指定子串的位置索引,如果未找到子串,則返回 `false`。
`strpos()` 函數有兩個必需參數:
1. haystack:要在其中搜索的字符串。
2. needle:要搜索的子串。
以下是使用 `strpos()` 函數的示例代碼:
$haystack = "Hello, world!"; $needle = "world"; $position = strpos($haystack, $needle); if ($position !== false) { echo "子串 '$needle' 在字符串 '$haystack' 中的位置為: $position"; } else { echo "子串 '$needle' 未找到"; }
上述示例將輸出 "子串 'world' 在字符串 'Hello, world!' 中的位置為: 7",因為子串 'world' 在字符串中的位置索引為 7。
總之,`strpos()` 函數的作用是在字符串中查找指定子串的位置,并返回其位置索引。它在 PHP 中經常用于字符串處理和搜索操作。