Skip to content

Instantly share code, notes, and snippets.

@alexd73
Last active April 29, 2018 08:50
Show Gist options
  • Save alexd73/0b2d00e2436bb678dfd5d62fcb159429 to your computer and use it in GitHub Desktop.
Save alexd73/0b2d00e2436bb678dfd5d62fcb159429 to your computer and use it in GitHub Desktop.
<?php
/**
* Убирает из массива элемент по его значению
* @param $arr
* @param $value
*/
function unset_by_value(&$arr, $value){
if (($key = array_search($value, $arr)) !== false) {
unset($arr[$key]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment