I've found a number of good threads on deleting elements from an array, but they always make use the array index.
What if you don't know the index?
What if you want to delete "something" from an array but you only know "something" and not it's index value?
I could implode the array in a string and then delete the part I need, but it would create a problem since I might need to delete "2" and this would effect "12" and "22", etc.
Unset, at least in my tests, only works with the arrays index value as well.
How might one approach a solution to this?
Thanks...v