php中STRPOS尋找失敗返回的是FALSE注意事項

來源:互聯網
上載者:User

STRPOS用法

strpos(string,find,start)

我們看看strpos的一段代碼:

//ajax擷取分詞
public function get_segment_words() {
 $title = I('title');
 $content = I('content');
 $Segment = M('Segment');
 $Segment_content = M('Segment_content');
 $segment_array = $Segment->getField('id,word');
 $setment_words = array();
 foreach ($segment_array as $id => $word) {
  if (false !== strpos($content, $word) || false !== strpos($title, $word)) {
   $segment_words[] = $word;
  }
 }
 $segment_words = array_unique($segment_words);
 $segment_words = implode(',', $segment_words);
 echo $segment_words;exit; //ajax擷取填充
}

注意這句代碼:

if (false !== strpos($content, $word) || false !== strpos($title, $word)) {
//TODO
}

如果匹配失敗,strpos會返回bool類型的false,這個一定要注意。不然會出現什麼情況呢?假如你要匹配的字元正好在第一個位置,對於strpos這個函數來說返回的是0,也就是位置0.這個時候實際上是匹配到了,結果返回0,如果這樣判斷就錯了:

if (!strpos($content, $word))

舉個例子:

內容:購物袋範德薩法拉點撒範德薩。

匹配:購物

如果要找內容裡面是否有“購物”兩個字,strpos會返回0,表示存在“購物”兩個字,位置是0.

因此要用false!=strpos($find,$content)來判斷匹配是否成功。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.