I have two arrays:
First Array
[
'Test' => 1,
'Test2' => 2,
'Test3' => 3,
...
]
Second Array
[
'0' => 'Test',
'1' => 'SomeTest',
...
]
I want to get difference of first array keys and second array values.
Result Array
[
'Test2' => 2,
'Test3' => 3
]