Skip to content

Instantly share code, notes, and snippets.

@raphaelchaib
Created February 19, 2015 19:26
Show Gist options
  • Save raphaelchaib/dc26ee28620ae792b8a8 to your computer and use it in GitHub Desktop.
Save raphaelchaib/dc26ee28620ae792b8a8 to your computer and use it in GitHub Desktop.
Exclude from array by value
<?php
if(($key = array_search($del_val, $array)) !== false) {
unset($array[$key]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment