PHP 2 个数组之间的匹配值
伙计们,我在这里遇到了一个非常尴尬的情况,我不确定我是否采取了正确的方法..我试图匹配两个数组之间的值,然后运行 if else 语句...这就是我想要做的 我想要做
$array1 = array('html','php','js','css');
$array2 = array('php','python','html','java');
的是检查这两个数组的值彼此匹配的位置。 像 php 和 html 一样,两者都很常见,但也有不匹配的地方。
谢谢
Guys i have a very awkward situation here , i am not sure whether am i taking a right approach or not.. i am trying to match the values between 2 arrays and then running if else statement... here's goes what i am trying to do
$array1 = array('html','php','js','css');
$array2 = array('php','python','html','java');
what i want is to make a check where the values of these 2 arrays matches to each other.
like php and html is common in both and also where it doesn't match.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
你的意思是像一个交叉点?
You mean like an intersection?
这是你的需要:
结果是:
It's your need:
the result is:
array_intersect
和
array_diff
应该做你想做的。
array_intersect
and
array_diff
should do what you want.
要获取数组的相交元素和不同元素,请使用 array_diff( ) 和 array_intersect()。
To get both the intersecting elements of the array and the differing elements use both array_diff() and array_intersect().