There are two arrays that need to be compared and leave the difference between. There is the first array:
<pre>Array ( [0] => dubstep ) </pre>
There is a second array
<pre>Array ( [0] => dubstep [1] => black metal ) </pre>
And the idea of the difference would be black metal, but using the array_diff function, I get the result: <pre> Array () </ pre>
Why is that? How does it really work?