Skip to content

Instantly share code, notes, and snippets.

@nhatnx
Created January 17, 2018 11:39
Show Gist options
  • Select an option

  • Save nhatnx/c3d33af3b99663f46c87be8a20a88c65 to your computer and use it in GitHub Desktop.

Select an option

Save nhatnx/c3d33af3b99663f46c87be8a20a88c65 to your computer and use it in GitHub Desktop.
PHP array delete by value (not key)
<?php
if (($key = array_search($del_val, $messages)) !== false) {
unset($messages[$key]);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment