stripos
函數是 PHP 中的字符串定位函數,可以在字符串中查找一個字符串,並返回第一個匹配的位置。該函數的語法如下:
stripos(haystack, needle, offset)
參數說明:
haystack
:要搜索的字符串。needle
:要查找的字符串。offset
:可選,從該位置開始搜索。
下面是一個簡單的示例代碼:
<?php
$string = "Hello world";
$position = stripos($string, "world");
echo $position; // Output: 6
?>
運行以上代碼後,將得到以下輸出:
6
這是一個簡單的 stripos
函數示例,您可以根據需要進行更改和擴展。希望本篇文章對您有所幫助。
發布者:彬彬筆記,轉載請註明出處:https://www.binbinbiji.com/zh-hant/php/3056.html