Skip to content

Instantly share code, notes, and snippets.

@kajstrom
Last active December 5, 2019 19:50
Show Gist options
  • Save kajstrom/241ee0db440940a13746fec9ecf8dd6b to your computer and use it in GitHub Desktop.
Save kajstrom/241ee0db440940a13746fec9ecf8dd6b to your computer and use it in GitHub Desktop.
Delete an item from an array without a loop if you don't know the index of the item
$items = [1, 2, 3, 4];
$itemToDelete = 3;
$itemsWithout3 = array_values(array_diff($items, [$itemToDelete]));
//$itemsWithout3 => [1, 2, 4]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment