Array (
[0] => 1
[1] => 2
[2] => 3
[3] => 4
[4] => 2
[5] => 3
)
This is my Array, I want to Remove all common value like 2,3 from this array.and to get Result like this.
Array (
[0] => 1
[2] => 4
)
Array (
[0] => 1
[1] => 2
[2] => 3
[3] => 4
[4] => 2
[5] => 3
)
This is my Array, I want to Remove all common value like 2,3 from this array.and to get Result like this.
Array (
[0] => 1
[2] => 4
)