I have a very simple PHP question.
Imagine i have two array :
[array1] {
[0] => zero
[1] => one
[2] => two
[3] => three
}
and
[array2] {
[0] => zero
[1] => test1
[2] => test2
[3] => three
}
I want to delete every value from the second array that is in the first one.
For example, from that two arrays at top, I want to have this below array ::
[array2] {
[0] => test1
[1] => test2
}
How can we do it in PHP ?
Thanks in advance.