PHP 2 个数组之间的匹配值

发布于 2024-12-14 11:47:10 字数 282 浏览 0 评论 0原文

伙计们,我在这里遇到了一个非常尴尬的情况,我不确定我是否采取了正确的方法..我试图匹配两个数组之间的值,然后运行 ​​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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

メ斷腸人バ 2024-12-21 11:47:10

你的意思是像一个交叉点

You mean like an intersection?

春花秋月 2024-12-21 11:47:10

这是你的需要:

$result = array_intersect($array1, $array2);
print_r($result);

结果是:

Array
(
    [0] => html
    [1] => php
)

It's your need:

$result = array_intersect($array1, $array2);
print_r($result);

the result is:

Array
(
    [0] => html
    [1] => php
)
伴我老 2024-12-21 11:47:10

array_intersect

array_diff

应该做你想做的。

array_intersect

and

array_diff

should do what you want.

千鲤 2024-12-21 11:47:10

要获取数组的相交元素和不同元素,请使用 array_diff( )array_intersect()

To get both the intersecting elements of the array and the differing elements use both array_diff() and array_intersect().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文