亚洲精品中文字幕无乱码_久久亚洲精品无码AV大片_最新国产免费Av网址_国产精品3级片

php語言

PHP數(shù)組的交集array-intersect()

時間:2024-09-13 17:29:02 php語言 我要投稿
  • 相關推薦

PHP數(shù)組的交集array-intersect()

  求兩個數(shù)組的交集問題可以使用array_intersect(),array_inersect_assoc,array_intersect_key來實現(xiàn),其中array_intersect()函數(shù)是求兩個數(shù)的交集,就跟隨百分網(wǎng)小編一起去了解下吧,想了解更多相關信息請持續(xù)關注我們應屆畢業(yè)生考試網(wǎng)!

  返回一個交集共有元素的數(shù)組(只是數(shù)組值得比較)、array_intersect_assoc()函數(shù)是將鍵值和值綁定,一起比較交集部分、array_intersect_key()函數(shù)是將兩個數(shù)組的鍵值進行比較,返回鍵值交集的數(shù)組。

  但實際應用中也遇到了一些小問題,正如下:

  實例:

  復制代碼 代碼如下:

  <?PHP

  $array = array("red"=>"Red","green"=>"red4","Red15"=>"Red",7=>"Level","Width"=>"Red","azzzz1"=>"art","peak"=>158);

  $array1 = array("red"=>"Red2","greena"=>"red","Red15"=>"Red",7=>"Level","Width"=>"Red","azzzz"=>"art","peak"=>158);

  $num = array_intersect($array,$array1);

  print_r ($num);

  echo "<br />";

  $num = array_intersect_assoc($array,$array1);

  print_r($num);

  echo "<br />";

  $num = array_intersect_key($array,$array1);

  print_r ($num);

  ?>

  運行結果:

  復制代碼 代碼如下:

  Array ( [red] => Red [Red15] => Red [7] => Level [Width] => Red [azzzz1] => art [peak] => 158 )

  Array ( [Red15] => Red [7] => Level [Width] => Red [peak] => 158 )

  Array ( [red] => Red [Red15] => Red [7] => Level [Width] => Red [peak] => 158 )

  總結:

  1.array_intersect()函數(shù)進行的比較只有數(shù)組值的比較,而且存在如”Red“和”Red2“比較時會返回"Red",反之則不會返回"Red2";

  2.array_intersect_assoc()函數(shù)是將數(shù)組的值與鍵值一起比較,而且不會存在array_intersect的情況,適用于較嚴格的比較;

  3.array_intersect_key()函數(shù)適用于比較兩個數(shù)組鍵值的交集,返回的并不只有鍵值,而是鍵值和對應的數(shù)組值。

【PHP數(shù)組的交集array-intersect()】相關文章:

PHP數(shù)組函數(shù)知識11-29

簡單PHP數(shù)組函數(shù)介紹11-28

php數(shù)組長度的方法03-03

PHP數(shù)組長度的技巧03-28

php遞歸遍歷多維數(shù)組的方法03-02

PHP超全局數(shù)組的方法12-02

PHP自帶的幾個實用的數(shù)組函數(shù)詳解11-18

php字符串與數(shù)組怎么轉換12-06

php如何去除數(shù)組中相同的元素12-04