In today’s snippet we see how to delete or unset an element from the array by value, but not by key. Because in normal cases we use the key to unset an element from an array.
We use array_search()
and unset()
for this solution
if (($key = array_search($value, $sampleArray)) !== false) { unset($sampleArray[$key]); }
Did this post help you?
Tutsplanet brings in-depth and easy tutorials to understand even for beginners. This takes a considerable amount of work. If this post helps you, please consider supporting us as a token of appreciation:
- Just want to thank us? Buy us a Coffee
- May be another day? Shop on Amazon using our links.
Your prices won't change but we get a small commission.