I looked up array_pop(), array_shift(), array_slice(), to no avail. None of these perform exactly what I want.
Consider this array:
$array = array('banana', 'orange', 'apple', 'lemon', 'pear');
I want to remove 'apple', for instance, or 'pear', or whatever. What existing PHP function will let me do this?
Thanx
Phil