i want to check if one array is contained in the second array , but the same key and the same values,
(Eşit olması gerekmez, sadece the key and value, bir dizideki tüm ikinci olduğunu kontrol edin)
ben şimdiye kadar yapmak basit bir şey:
function checkSameValues($a, $b){
foreach($a as $k1 => $v1){
if($v1 && $v1 != $b[$k1]){
return false;
break;
}
}
return true;
}
Bu kontrol etmek için bir basit (hızlı) bir yolu var mı?
teşekkürler