in_array()和multidimensional array

我使用in_array()来检查数组是否存在于像下面这样的数组中,

 $a = array("Mac", "NT", "Irix", "Linux"); if (in_array("Irix", $a)) { echo "Got Irix"; } //print_r($a); 

但如何multidimensional array(下) – 如何检查该值是否存在于多数组?

 $b = array(array("Mac", "NT"), array("Irix", "Linux")); print_r($b); 

或者当我来到multidimensional array时,我不应该使用in_array()

in_array()在multidimensional array上不起作用。 你可以写一个recursion函数来为你做这件事:

 function in_array_r($needle, $haystack, $strict = false) { foreach ($haystack as $item) { if (($strict ? $item === $needle : $item == $needle) || (is_array($item) && in_array_r($needle, $item, $strict))) { return true; } } return false; } 

用法:

 $b = array(array("Mac", "NT"), array("Irix", "Linux")); echo in_array_r("Irix", $b) ? 'found' : 'not found'; 

这也会起作用。

 function in_array_r($item , $array){ return preg_match('/"'.$item.'"/i' , json_encode($array)); } 

用法:

 if(in_array_r($item , $array)){ // found! } 

这将做到这一点:

 foreach($b as $value) { if(in_array("Irix", $value, true)) { echo "Got Irix"; } } 

in_array只能在一维数组上运行,所以你需要遍历每个子数组并在每个数组上运行in_array

正如其他人所指出的那样,这只会用于二维数组。 如果你有更多的嵌套数组,recursion版本会更好。 查看其他答案的例子。

如果你的数组是这样的

 $array = array( array("name" => "Robert", "Age" => "22", "Place" => "TN"), array("name" => "Henry", "Age" => "21", "Place" => "TVL") ); 

用这个

 function in_multiarray($elem, $array,$field) { $top = sizeof($array) - 1; $bottom = 0; while($bottom <= $top) { if($array[$bottom][$field] == $elem) return true; else if(is_array($array[$bottom][$field])) if(in_multiarray($elem, ($array[$bottom][$field]))) return true; $bottom++; } return false; } 

例如: echo in_multiarray("22", $array,"Age");

如果知道要search哪个列,可以使用array_search()和array_column():

 $userdb = Array ( (0) => Array ( ('uid') => '100', ('name') => 'Sandra Shush', ('url') => 'urlof100' ), (1) => Array ( ('uid') => '5465', ('name') => 'Stefanie Mcmohn', ('url') => 'urlof5465' ), (2) => Array ( ('uid') => '40489', ('name') => 'Michael', ('url') => 'urlof40489' ) ); if(array_search('urlof5465', array_column($userdb, 'url')) !== false) { echo 'value is in multidim array'; } else { echo 'value is not in multidim array'; } 

这个想法是在PHP手册的array_search()的注释部分;

伟大的function,但它没有为我工作,直到我join了if($found) { break; } if($found) { break; } elseif

 function in_array_r($needle, $haystack) { $found = false; foreach ($haystack as $item) { if ($item === $needle) { $found = true; break; } elseif (is_array($item)) { $found = in_array_r($needle, $item); if($found) { break; } } } return $found; } 

你总是可以序列化你的multidimensional array并做一个strpos

 $arr = array(array("Mac", "NT"), array("Irix", "Linux")); $in_arr = (bool)strpos(serialize($arr),'s:4:"Irix";'); if($in_arr){ echo "Got Irix!"; } 

我使用的各种文档:

  • strpos()
  • 连载()
  • types杂耍或(布尔)

这是我基于json_encode()解决scheme的build议:

  • 不区分大小写的选项
  • 返回计数而不是真实的
  • 数组中的任何地方 (键和值)

如果找不到字,它仍然返回0等于false

 function in_array_count($needle, $haystack, $caseSensitive = true) { if(!$caseSensitive) { return substr_count(strtoupper(json_encode($haystack)), strtoupper($needle)); } return substr_count(json_encode($haystack), $needle); } 

希望它有帮助。

 $userdb = Array ( (0) => Array ( ('uid') => '100', ('name') => 'Sandra Shush', ('url') => 'urlof100' ), (1) => Array ( ('uid') => '5465', ('name') => 'Stefanie Mcmohn', ('url') => 'urlof5465' ), (2) => Array ( ('uid') => '40489', ('name') => 'Michael', ('url') => 'urlof40489' ) ); $url_in_array = in_array('urlof5465', array_column($userdb, 'url')); if($url_in_array) { echo 'value is in multidim array'; } else { echo 'value is not in multidim array'; } 

我相信你现在可以使用array_key_exists :

 <?php $a=array("Mac"=>"NT","Irix"=>"Linux"); if (array_key_exists("Mac",$a)) { echo "Key exists!"; } else { echo "Key does not exist!"; } ?> 

这是我在in_array的php手册中find的这种types的第一个函数。 评论部分中的函数并不总是最好的,但如果它不能做到这一点,你也可以看看:)

 <?php function in_multiarray($elem, $array) { // if the $array is an array or is an object if( is_array( $array ) || is_object( $array ) ) { // if $elem is in $array object if( is_object( $array ) ) { $temp_array = get_object_vars( $array ); if( in_array( $elem, $temp_array ) ) return TRUE; } // if $elem is in $array return true if( is_array( $array ) && in_array( $elem, $array ) ) return TRUE; // if $elem isn't in $array, then check foreach element foreach( $array as $array_element ) { // if $array_element is an array or is an object call the in_multiarray function to this element // if in_multiarray returns TRUE, than return is in array, else check next element if( ( is_array( $array_element ) || is_object( $array_element ) ) && $this->in_multiarray( $elem, $array_element ) ) { return TRUE; exit; } } } // if isn't in array return FALSE return FALSE; } ?> 

它也起作用,首先创build一个新的单维数组。

 $arr = array("key1"=>"value1","key2"=>"value2","key3"=>"value3"); foreach ($arr as $row) $vector[] = $row['key1']; in_array($needle,$vector); 

对于基于数据库结果集创build的multidimensional array,更短的版本。

 function in_array_r($array, $field, $find){ foreach($array as $item){ if($item[$field] == $find) return true; } return false; } $is_found = in_array_r($os_list, 'os_version', 'XP'); 

如果$ os_list数组在os_version字段中包含“XP”,将返回。

我正在寻找一个函数,让我在数组(haystack)中searchstring和数组 (像针),所以我通过@jwueller添加了答案 。

这是我的代码:

 /** * Recursive in_array function * Searches recursively for needle in an array (haystack). * Works with both strings and arrays as needle. * Both needle's and haystack's keys are ignored, only values are compared. * Note: if needle is an array, all values in needle have to be found for it to * return true. If one value is not found, false is returned. * @param mixed $needle The array or string to be found * @param array $haystack The array to be searched in * @param boolean $strict Use strict value & type validation (===) or just value * @return boolean True if in array, false if not. */ function in_array_r($needle, $haystack, $strict = false) { // array wrapper if (is_array($needle)) { foreach ($needle as $value) { if (in_array_r($value, $haystack, $strict) == false) { // an array value was not found, stop search, return false return false; } } // if the code reaches this point, all values in array have been found return true; } // string handling foreach ($haystack as $item) { if (($strict ? $item === $needle : $item == $needle) || (is_array($item) && in_array_r($needle, $item, $strict))) { return true; } } return false; } 

那么array_search呢? 根据https://gist.github.com/Ocramius/1290076,它似乎比foreach快得多。;

 if( array_search("Irix", $a) === true) { echo "Got Irix"; } 

你可以这样使用

 $result = array_intersect($array1, $array2); print_r($result); 

http://php.net/manual/tr/function.array-intersect.php

请尝试:

 in_array("irix",array_keys($b)) in_array("Linux",array_keys($b["irix"]) 

林不知道需要,但这可能适用于您的要求