您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關php中怎么查詢字符串,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
查詢方法:1、使用stripos(),查詢字符串首次出現的位置;2、使用strpos(),查詢字符串首次出現的位置;3、使用strripos(),查詢字符串最后一次出現的位置;4、使用strrpos(),查詢字符串最后一次出現的位置。
本教程操作環境:windows7系統、PHP7.1版,DELL G3電腦
在 PHP 中,可以使用以下4個函數來查找字符串。
1、使用stripos()函數
stripos() 用來查找字符串中某部分字符串首次出現的位置(不區分大小寫)。
語法如下:
int stripos ( string $haystack , string $needle [, int $offset = 0 ] )
參數說明如下:
haystack:在該字符串中查找。
needle:needle 可以是一個單字符或者多字符的字符串。如果 needle 不是一個字符串,那么它將被轉換為整型并被視為字符順序值。
offset:可選的 offset 參數允許你指定從 haystack 中的哪個字符開始查找,返回的位置數字值仍然相對于 haystack 的起始位置。
返回 needle 存在于 haystack 字符串開始的位置(獨立于偏移量)。同時注意字符串位置起始于 0,而不是 1。如果未發現 needle 就將返回 false。
示例如下:
<?php $findme = 'c'; $mystring1 = 'xyz'; $mystring2 = 'ABC'; $pos1 = stripos($mystring1, $findme); $pos2 = stripos($mystring2, $findme); var_dump($pos1); var_dump($pos2); ?>
執行結果為:
bool(false) int(2)
2、使用strpos()函數
strpos() 用來查找字符串首次出現的位置。
語法如下:
mixed strpos ( string $haystack , mixed $needle [, int $offset = 0 ] )
strpos() 和 strrpos()、strripos() 不一樣,strpos 的偏移量不能是負數。
示例如下:
<?php $findme = 'c'; $findme1 = 'C'; $mystring = 'ABCabc'; $pos1 = strpos($mystring, $findme); $pos2 = strpos($mystring, $findme1); var_dump($pos1); var_dump($pos2); ?>
上述代碼的執行結果為:
int(5)int(2)
3、使用strripos()函數
strripos() 用來計算指定字符串在目標字符串中最后一次出現的位置(不區分大小寫)。
語法如下:
int strripos ( string $haystack , string $needle [, int $offset = 0 ] )
負數偏移量將使得查找從字符串的起始位置開始,到 offset 位置為止。
示例如下:
<?php $findme = 'c'; $findme1 = 'C'; $mystring = 'ABCabcabcABC'; $pos1 = strripos($mystring, $findme); $pos2 = strripos($mystring, $findme1); var_dump($pos1); var_dump($pos2); ?>
上述代碼的執行結果為:
int(11)int(11)
4、使用strrpos()函數
strrpos() 用來計算指定字符串在目標字符串中最后一次出現的位置.
語法如下:
int strrpos ( string $haystack , string $needle [, int $offset = 0 ] )
如果是負數的偏移量,將會導致查找在字符串結尾處開始的計數位置處結束。
示例如下:
<?php $findme = 'c'; $findme1 = 'C'; $mystring = 'ABCabcabcABC'; $pos1 = strrpos($mystring, $findme); $pos2 = strrpos($mystring, $findme1); $pos3 = strrpos($mystring, $findme1,-5); var_dump($pos1); var_dump($pos2); var_dump($pos3); ?>
上述代碼的執行結果為:
int(8)int(11)int(2)
關于“php中怎么查詢字符串”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。