我使用in_array()
检查数组中是否存在值,如下所示
$a = array("Mac", "NT", "Irix", "Linux");
if (in_array("Irix", $a))
{
echo "Got Irix";
}
//print_r($a);
但是多维数组怎么样(下面) - 如何检查该值是否存在于多数组中?
$b = array(array("Mac", "NT"), array("Irix", "Linux"));
print_r($b);
或者我来到多维数组时不应该使用in_array()
?
答案 0 :(得分:448)
in_array()
不适用于多维数组。您可以编写一个递归函数来为您执行此操作:
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';
答案 1 :(得分:52)
这也可以。
function in_array_r($item , $array){
return preg_match('/"'.preg_quote($item, '/').'"/i' , json_encode($array));
}
用法:
if(in_array_r($item , $array)){
// found!
}
答案 2 :(得分:45)
如果您知道要搜索的列,可以使用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()的注释部分;
答案 3 :(得分:33)
这样做:
foreach($b as $value)
{
if(in_array("Irix", $value, true))
{
echo "Got Irix";
}
}
in_array
仅在一维数组上运行,因此您需要遍历每个子数组并在每个子数组上运行in_array
。
正如其他人所说,这只适用于二维数组。如果你有更多的嵌套数组,递归版本会更好。请参阅其他答案的例子。
答案 4 :(得分:22)
如果你的数组是这样的
$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");
答案 5 :(得分:13)
功能很棒,但直到我将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;
}
答案 6 :(得分:13)
$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';
}
答案 7 :(得分:6)
对于多维儿童: in_array('needle', array_column($arr, 'key'))
针对一维儿童: in_array('needle', call_user_func_array('array_merge', $arr))
答案 8 :(得分:6)
您始终可以序列化多维数组并执行strpos
:
$arr = array(array("Mac", "NT"), array("Irix", "Linux"));
$in_arr = (bool)strpos(serialize($arr),'s:4:"Irix";');
if($in_arr){
echo "Got Irix!";
}
我使用过的各种文档:
答案 9 :(得分:1)
以下是我的命题基于json_encode()解决方案:
如果找不到单词,它仍会返回 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);
}
希望它有所帮助。
答案 10 :(得分:1)
自 PHP 5.6 起,就有了一个更干净的解决方案:
具有这样的多维数组:
$a = array(array("Mac", "NT"), array("Irix", "Linux"))
我们可以使用 splat operator :
return in_array("Irix", array_merge(...$a), true)
如果您有这样的字符串键:
$a = array("a" => array("Mac", "NT"), "b" => array("Irix", "Linux"))
您将必须使用array_values
来避免出现错误Cannot unpack array with string keys
:
return in_array("Irix", array_merge(...array_values($a)), true)
答案 11 :(得分:1)
accepted solution (撰写本文时) jwueller
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;
}
完全正确但在进行弱比较时可能会出现意外行为(参数$strict = false
)。
由于PHP在比较不同类型的值时的类型杂耍
"example" == 0
和
0 == "example"
评估true
,因为"example"
已投放到int
并转为0
。
(见Why does PHP consider 0 to be equal to a string?)
如果这不是所需的行为,在进行非严格比较之前,可以方便地将数值转换为字符串:
function in_array_r($needle, $haystack, $strict = false) {
foreach ($haystack as $item) {
if( ! $strict && is_string( $needle ) && ( is_float( $item ) || is_int( $item ) ) ) {
$item = (string)$item;
}
if (($strict ? $item === $needle : $item == $needle) || (is_array($item) && in_array_r($needle, $item, $strict))) {
return true;
}
}
return false;
}
答案 12 :(得分:1)
我相信你现在可以使用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!";
}
?>
答案 13 :(得分:0)
较短版本,适用于基于数据库结果集创建的多维数组。
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',则返回。
答案 14 :(得分:0)
我正在寻找一个让我在数组(haystack)中搜索字符串和数组(如针)的函数,所以我添加到了answer by @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;
}
答案 15 :(得分:0)
这是我在php manual for in_array中找到的第一个此类型的函数。评论部分中的功能并不总是最好的,但如果它没有做到这一点,你也可以在那里查看:)
<?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;
}
?>
答案 16 :(得分:0)
它也可以从原始数组创建一个新的一维数组。
$arr = array("key1"=>"value1","key2"=>"value2","key3"=>"value3");
foreach ($arr as $row) $vector[] = $row['key1'];
in_array($needle,$vector);
答案 17 :(得分:0)
我找到了一个非常小的简单解决方案:
如果您的数组是:
Array
(
[details] => Array
(
[name] => Dhruv
[salary] => 5000
)
[score] => Array
(
[ssc] => 70
[diploma] => 90
[degree] => 70
)
)
然后代码将像:
if(in_array("5000",$array['details'])){
echo "yes found.";
}
else {
echo "no not found";
}
答案 18 :(得分:0)
我使用此方法可用于任意数量的嵌套并且不需要黑客入侵
<?php
$blogCategories = [
'programing' => [
'golang',
'php',
'ruby',
'functional' => [
'Erlang',
'Haskell'
]
],
'bd' => [
'mysql',
'sqlite'
]
];
$it = new RecursiveArrayIterator($blogCategories);
foreach (new RecursiveIteratorIterator($it) as $t) {
$found = $t == 'Haskell';
if ($found) {
break;
}
}
答案 19 :(得分:0)
我发现以下解决方案不是很干净的代码,但它有效。它用作递归函数。
function in_array_multi( $needle, $array, $strict = false ) {
foreach( $array as $value ) { // Loop thorugh all values
// Check if value is aswell an array
if( is_array( $value )) {
// Recursive use of this function
if(in_array_multi( $needle, $value )) {
return true; // Break loop and return true
}
} else {
// Check if value is equal to needle
if( $strict === true ) {
if(strtolower($value) === strtolower($needle)) {
return true; // Break loop and return true
}
}else {
if(strtolower($value) == strtolower($needle)) {
return true; // Break loop and return true
}
}
}
}
return false; // Nothing found, false
}
答案 20 :(得分:-1)
array_search怎么样?根据{{3}} ...
,它似乎比foreach快得多if( array_search("Irix", $a) === true)
{
echo "Got Irix";
}
答案 21 :(得分:-1)
你可以像这样使用
$result = array_intersect($array1, $array2);
print_r($result);
答案 22 :(得分:-1)
请尝试:
in_array("irix",array_keys($b))
in_array("Linux",array_keys($b["irix"])
我不确定是否需要,但这可能适合您的要求