Heim > Backend-Entwicklung > PHP-Tutorial > php数组区别取值的四个函数学习

php数组区别取值的四个函数学习

WBOY
Freigeben: 2016-07-25 09:04:35
Original
884 Leute haben es durchsucht
  1. $array1 = array("a" => "green", "red", "blue");
  2. $array2 = array("b" => "green", "yellow", "red");
  3. $result = array_intersect($array1, $array2);
  4. ?>
复制代码

上例将输出: Array ( [a] => green [0] => red )

2.array_intersect_assoc() 在前一个函数的基础上,返回所有数组中键、值均相同的键值对。

例子:

  1. $array1 = array("a" => "green", "b" => "brown", "c" => "blue", "red");
  2. $array2 = array("a" => "green", "yellow", "red");
  3. $result_array = array_intersect_assoc($array1, $array2);
  4. ?>
复制代码

上例将输出: Array ( [a] => green )

3.array_diff() 携带多个数组,返回第一个数组中有的而后面的数组中没有的所有的值组成的新数组,对应键取自第一个数组。

例子:

  1. $array1 = array("a" => "green", "red", "blue", "red");

  2. $array2 = array("b" => "green", "yellow", "red");
  3. $result = array_diff($array1, $array2);
  4. print_r($result);

  5. ?>
复制代码

上例将输出: Array ( [1] => blue )

4.array_diff_assoc() 在前一个函数的基础上,不仅需要匹配值还要匹配键。

例子:

  1. $array1 = array ("a" => "green", "b" => "brown", "c" => "blue", "red");
  2. $array2 = array ("a" => "green", "yellow", "red");
  3. $result = array_diff_assoc($array1, $array2);
  4. ?>
复制代码

上例将输出: Array ( => brown [c] => blue [0] => red )



Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage