PHP中的array_intersect_assoc()函数

PHPz
发布: 2023-08-19 15:42:01
转载
1585 人浏览过

PHP中的array_intersect_assoc()函数

The array_intersect_assoc() function compares array values, and returns the matches.

语法

array_intersect_assoc(arr1, arr2, arr3,  arr4, …)
登录后复制

Parameters

  • arr1 − Array to compare from. Required.

  • arr2 − Array to compare against. Required.

  • arr3 −您可以添加更多数组进行比较。可选。

  • arr4 − 您可以添加更多的数组进行比较。可选。

返回

The array_intersect_assoc() function returns an array containing all of the values in the first array whose values exist in all of the parameters.

Example

的中文翻译为:

示例

实时演示

<?php
   $arr1 = array("p"=>"headphone","q"=>"earpod","r"=>"charger");
   $arr2 = array("p"=>"headphone","q"=>"earpod");
   $res = array_intersect_assoc($arr1,$arr2);
   print_r($res);
?>
登录后复制

输出

Array 
(
   [p] => headphone
   [q] => earpod
)
登录后复制

以上是PHP中的array_intersect_assoc()函数的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:tutorialspoint.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!