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中使用的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注創新互聯行業資訊頻道,感謝各位的閱讀!
本文標題:strstr()與strpos()函數怎么在php中使用-創新互聯
文章轉載:http://vcdvsql.cn/article24/ddpjje.html
成都網站建設公司_創新互聯,為您提供做網站、品牌網站制作、建站公司、商城網站、動態網站、網站建設
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯