strpos() 函數在 PHP 中用於尋找字串中首次出現指定子字串的位置,並傳回其索引(從 0 開始)。如果未找到子字串,則傳回 -1。用法:strpos($haystack, $needle, $offset = 0)。
PHP 中strpos 的作用
在PHP 中,strpos() 函數用於在字串中查找指定子字串的首次出現的位置。
用法
strpos() 函數有以下語法:
<code class="php">int strpos(string $haystack, string $needle, int $offset = 0)</code>
返回結果
範例
以下範例示範了strpos() 函數的用法:
<code class="php">$string = "Hello World!"; // 查找子字符串 "World" 在字符串中的位置 $position = strpos($string, "World"); // 输出结果 echo $position; // 输出:6</code>
在這個範例中,strpos() 函數找到了子字串"World" 在字串中首次出現的位置(索引6)。
注意事項
以上是php中strpos的作用的詳細內容。更多資訊請關注PHP中文網其他相關文章!