I have two arrays which look like this :
$has_end_date = ['value123' , 'value132'];
$has_no_end_date = ['value123' , 'value256'];
Now I wish to return the unique values from $has_no_end_date that doesn't appear in $has_end_date.
This is what I tried :
I tried to merge the two arrays together and then find the unique values. But that did not work, i will get the unique of both of them.
I am only looking for the unique different values from $has_no_end_date array.
['value256']?