這篇文章主要介紹了php實現指定字串中查找子字串的方法,涉及php中strpos()函數查找字串的技巧,具有一定參考借鑒價值,需要的朋友可以參考下
本文實例敘述了php實作指定字串中尋找子字串的方法。具體分析如下:
對strpos()函數可以用來在php中尋找子字串。 strpos()函數將試圖找到子字串在來源字串中首次出現的位置。如果找到了,它會傳回一個非負整數表示子字串出現的位置。否則它會傳回一個布林值false。
<?php $haystack1 = "2349534134345w3mentor16504381640386488129"; $haystack2 = "w3mentor234953413434516504381640386488129"; $haystack3 = "center234953413434516504381640386488129fyi"; $pos1 = strpos($haystack1, "w3mentor"); $pos2 = strpos($haystack2, "w3mentor"); $pos3 = strpos($haystack3, "w3mentor"); print("pos1 = ($pos1); type is " . gettype($pos1) . "\n"); print("pos2 = ($pos2); type is " . gettype($pos2) . "\n"); print("pos3 = ($pos3); type is " . gettype($pos3) . "\n"); ?>
輸出結果:
pos1 = (13); type is integer pos2 = (0); type is integer pos3 = (); type is boolean
pos3回傳的是bool值,也就是沒有找到子字串
總結:以上就是這篇文章的全部內容,希望對大家的學習有所幫助。
相關推薦:
以上是php如何在指定字串中尋找子字串的詳細內容。更多資訊請關注PHP中文網其他相關文章!