如何学习PHP array_intersect_key()
定义和用法
array_intersect_key() 函数使用键名比较计算数组的交集。
array_intersect_key() 返回一个数组,该数组包含了所有出现在被比较的数组中并同时出现在所有其它参数数组中的键名的值。
注释:仅有键名用于比较。
语法
array_intersect_key(array1,array2,array3...)
参数
描述
array1必需。与其他数组进行比较的第一个数组。
array2必需。与第一个数组进行比较的数组。
array3可选。与第一个数组进行比较的数组。可以有多个。
例子 1
"Cat",1=>"Dog",2=>"Horse"); $a2=array(2=>"Bird",0=>"Cat",4=>"Fish"); print_r(array_intersect_key($a1,$a2)); ?>
输出:
Array ( [0] => Cat [2] => Horse )
例子 2
"Cat",1=>"Dog",2=>"Horse"); $a2=array(2=>"Bird",3=>"Rat",4=>"Fish"); $a3=array(2=>"Dog",6=>"Cow",7=>"Bird"); print_r(array_intersect_key($a1,$a2,$a3)); ?>
输出:
Array ( [2] => Horse )

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

WebStorm Mac version
Useful JavaScript development tools

Dreamweaver CS6
Visual web development tools
