php數組 匹配索引值

來源:互聯網
上載者:User

標籤:exists   false   lock   傳回值   blog   otto   str   font   log   

1、array_search()

判斷索引值是否在數組中,如存在,傳回值對應的鍵;

反之,返回false;

例子:$type = array(

"選考" => ‘optional‘,

"必考" => ‘necessary‘,

"其他" => ‘other‘,

);

$subject_type = array_search(‘optional‘,$type);

//$subject_type = 選考

 

2、in_array()

in_array(search,array,type)

和第一個類似,但是傳回值不一樣。

如果type為true,則判斷類型;type不寫,則不判斷類型;

搜尋存在,返回:true;反之,返回:false。

 

3、array_key_exists()

該函數檢查某個數組中是否存在指定的鍵名,

如果鍵名存在則返回 true,如果鍵名不存在則返回 false。

 例子:

<?php
$search_array = array(‘first‘ => 1, ‘second‘ => 4);
if (array_key_exists(‘first‘, $search_array)) {
    echo "The ‘first‘ element is in the array";
}

?>

 ----------------------------------------------------------

 

array_key_exists() 與 isset() 的對比

isset() 對於數組中為 NULL 的值不會返回 TRUE,而 array_key_exists() 會。

 

<?php
$search_array 

$search_array = array(‘first‘ => null, ‘second‘ => 4);

// returns false
isset($search_array[‘first‘]);

// returns true
array_key_exists(‘first‘, $search_array);
?>

 


 

php數組 匹配索引值

相關文章

聯繫我們

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