您好,登錄后才能下訂單哦!
strstr()與strpos()函數怎么在php中使用?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
string strstr ( string $haystack , mixed $needle [, bool $before_needle = false ] )
1、$haystack被查找的字符串,$needle要查找的內容
2、如查找到則返回字符串的一部分,如沒找到則返回FALSE
3、該函數區分大小寫,如果想要不區分大小寫,請使用 stristr()
4、如果你僅僅想確定needle是否存在于haystack中請使用速度更快、耗費內存更少的strpos()
函數
<?php $email = 'name@example.com'; $domain = strstr($email,'@'); $name = strstr($email,'@',TRUE); $no_con = strstr($email,'99'); echo $domain; //輸出 @example.com echo $name; //輸出name 從 PHP 5.3.0 起 var_dump($no_con); //如果沒找到,則返回布爾值 FALSE ?>
運行結果:
@example.com
name
bool(false)
mixed strpos ( string $haystack , mixed $needle [, int $offset = 0 ] )
1、$haystack被查找的字符串,$needle要查找的內容
2、返回 needle 在 haystack 中首次出現的數字位置
3、該函數區分大小寫,如果想要不區分大小寫,請使用 stripos()
4、返回值,如找到的話,返回needle 存在于 haystack 字符串起始的位置(注意字符串位置是從0開始,而不是從1開始),沒找到則返回FALSE,但也可能返回等同于 FALSE 的非布爾值
<?php $mystring = 'abc' ; $findme = 'a' ; $pos = strpos($mystring,$findme); echo $pos; //輸出0,既是當前a的位置 ?>
運行結果:
0
這里2個比較相似的函數,在這里簡單介紹下,只需記住有這個函數即可,用時簡單看下手冊。
1、strrpos()
,計算指定字符串在目標字符串中最后一次出現的位置
實例1 使用 ===
<?php $mystring = 'abc'; $findme = 'a'; $pos = strpos($mystring, $findme); // 注意這里使用的是 ===。簡單的 == 不能像我們期待的那樣工作, // 因為 'a' 是第 0 位置上的(第一個)字符。 if ($pos === false) { echo "The string '$findme' was not found in the string '$mystring'"; } else { echo "The string '$findme' was found in the string '$mystring'"; echo " and exists at position $pos"; } ?>
實例2 使用 !==
<?php $mystring = 'abc'; $findme = 'a'; $pos = strpos($mystring, $findme); // 使用 !== 操作符。使用 != 不能像我們期待的那樣工作, // 因為 'a' 的位置是 0。語句 (0 != false) 的結果是 false。 if ($pos !== false) { echo "The string '$findme' was found in the string '$mystring'"; echo " and exists at position $pos"; } else { echo "The string '$findme' was not found in the string '$mystring'"; } ?>
實例3 使用位置偏移量
<?php // 忽視位置偏移量之前的字符進行查找 $newstring = 'abcdef abcdef'; $pos = strpos($newstring, 'a', 1); // $pos = 7, 不是 0 ?>
注釋
Note: 此函數可安全用于二進制對象。
2、strripos()
,計算指定字符串在目標字符串中最后一次出現的位置(不區分大小寫)
php是一個嵌套的縮寫名稱,是英文超級文本預處理語言,它的語法混合了C、Java、Perl以及php自創新的語法,主要用來做網站開發,許多小型網站都用php開發,因為php是開源的,從而使得php經久不衰。
看完上述內容,你們掌握strstr()與strpos()函數怎么在php中使用的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。