我有两个数组,分别是$a和$b,其中数组的值相同,但元素的索引不同。 $a Array ( [0] => there is bald spot on the inside or outside of tyre [1] => uneven tyre wear ) $b Array ( [0] => uneven tyre wear [1] => there is bald spot on the inside or outside of tyre ) 但是当我使用进行比较时$a == $b,false即使数组中的元素相同(即使元素的位置不同),它也会返回。
之前给出的解决方案是
$a = Array ( 0 => 'there is bald spot on the inside or outside of tyre', 1 => 'uneven tyre wear'
);
$b = Array ( 0 => 'uneven tyre wear', 1 => 'there is bald spot on the inside or outside of tyre' );
if(count(array_diff($a,$b)) == 0){ echo "both array are identical";
} 但是如果我从$ a中删除一个元素
$a = Array ( 0 => 'there is bald spot on the inside or outside of tyre' //1 => 'uneven tyre wear'
); 如果使用上述解决方案,它仍然显示相同的内容。
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。