php compare two associative arrays

ぃ、小莉子 提交于 2019-11-27 16:09:59

问题


i have these two associative arrays

// the needle array

$a = array(
"who" => "you", 
"what" => "thing", 
"where" => "place",
"when" => "hour"
);

// the haystack array

$b = array(
"when" => "time", 
"where" => "place", 
"who" => "you",
"what" => "thing"
);

i want to check if the $a has a match with the b with it's exact key and value

and if each key and value from $a has an exact match in $b.... i want to increment the value of a variable $c by 1 and so on...

as we've seen from above there 3 possible match... and supposedly results to increment the value of $c by 3

$c = "3";

i hope some genius can help me...


回答1:


you can look into the php's array_diff_assoc() function or the array_intersect() function.

EDIT

Here's a sample on counting the matched values:

<?php
  $a = array(
    "who" => "you", 
    "what" => "thing", 
    "where" => "place",
    "when" => "hour"
  );
  // the haystack array
  $b = array(
    "when" => "time", 
    "where" => "place", 
    "who" => "you",
    "what" => "thing"
  );
  $c = count(array_intersect($a, $b));
  echo $c;
?>

CODEPAD link.



来源:https://stackoverflow.com/questions/10266148/php-compare-two-associative-arrays

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!