Estoy confundiendo comportamiento array_diffproblema matriz_diff
¿por qué no existe género en diff array? ¿Sabes cómo resolver el problema?
-code
<?php
$array1 = array
(
'value01' => '0',
'value02' => 'v2',
'genre' => '1',
'type' => 'text',
'contry' => 'us',
'data' => '1',
);
$array2 = array
(
'value01' => 'v1',
'value02' => 'v2',
'genre' => '0',
'type' => 'text',
'contry' => 'canada',
'data' => '1',
);
print_r(array_diff($array1,$array2));
-resultado
$ php diff.php
Array
(
[contry] => us
)