I have an array called array1
Array(
[0] => 1,
[1] => 2,
[2] => 5
)
And another array called array2
Array(
[0] => 3,
[1] => 2,
[2] => 7
)
I need to get the array1 which is not in array2
I need to get result as
Array(
[0] => 1,
[1] => 5
)