PHP 判斷是否包含某字串____PHP

來源:互聯網
上載者:User

    原文:http://www.oschina.net/code/snippet_98890_27459

PHP判斷字串的包含,可以使用PHP的內建函數 strstr,strpos,stristr直接進行判斷.也可以通過explode函數的作用寫一個判斷函數:

1. [代碼]strstr 和 stristr的用法

strstr : 返回一個從被判斷字元開始到結束的字串,如果沒有傳回值,則不包含. stristr : 它和 strstr 的使用方法完全一樣.唯一的區別是 stristr 不區分大小寫.

$email = ‘ user@example.com’;$domain = strstr($email, ‘@’);echo $domain;// prints @example.com
2. [代碼]strpos的用法 strpos : 返回boolean值.FALSE和TRUE不用多說.用 “===”進行判斷. strpos 在執行速度上都比以上兩個函數快,另外 strpos 有一個參數指定判斷的位置,但是預設為空白.意思是判斷整個字串.缺點是對中文的支援不好. PHP判斷字串的包含代碼如下:
$str= ‘abc’;$needle= ‘a’;$pos = strpos($str, $needle);
3. [代碼]explode 的用法
function checkstr($str){    $needle = “a”;//判斷是否包含a這個字元    $tmparray = explode($needle,$str);    if(count($tmparray)>1){    return true;    } else{    return false;    } }

4.[代碼] in_array — 檢查數組中是否存在某個值例子
1. in_array() 例子<?php$os= array("Mac", "NT", "Irix", "Linux");if (in_array("Irix", $os)) {echo"Got Irix";}if (  in_array("mac", $os)) {echo"Got mac";}?>第二個條件失敗,因為 in_array() 是區分大小寫,所以以上程式顯示為:Got Irix  2. in_array() 嚴格類型檢查例子<?php$a= array('1.10', 12.4, 1.13);if (in_array('12.4', $a, true)) {echo"'12.4' found with strict check\n";}if (in_array(1.13, $a, true)) {echo"1.13 found with strict check\n";}?>上例將輸出:1.13 found with strict check  3. in_array() 中用數組作為 needle<?php$a = array(array('p', 'h'), array('p', 'r'), 'o');if (in_array(array('p', 'h'), $a)) {echo"'ph' was found\n";}if (in_array(array('f', 'i'), $a)) {echo"'fi' was found\n";}if (in_array('o', $a)) {echo"'o' was found\n";}?> 上例將輸出:'ph' was found'o' was found array_search — 在數組中搜尋給定的值,如果成功則返回相應的鍵名

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.