php in_array 函數使用說明與in_array需要注意的地方說明

來源:互聯網
上載者:User

in_array
(PHP 4, PHP 5)

in_array — 檢查數組中是否存在某個值

說明 複製代碼 代碼如下:bool in_array ( mixed $needle , array $haystack [, bool $strict ] )

在 haystack 中搜尋 needle ,如果找到則返回 TRUE,否則返回 FALSE。

如果第三個參數 strict 的值為 TRUE 則 in_array() 函數還會檢查 needle 的類型是否和 haystack 中的相同。

Note: 如果 needle 是字串,則比較是區分大小寫。

Note: 在 PHP 版本 4.2.0 之前,needle 不允許是一個數組。

Example #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

Example #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

Example #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

需要注意的地方:

假如:

先聲明一個數組為:

  $arr = array(*);

那麼則有:

  in_array(0, $arr) == true

令人費解! {弱語言}

解決辦法:
in_array(strval(0), $arr, true))

相關文章

聯繫我們

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