Skip to content

Instantly share code, notes, and snippets.

@2dpi
Created June 10, 2014 09:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 2dpi/6a82181a4b223be7ecb4 to your computer and use it in GitHub Desktop.
Save 2dpi/6a82181a4b223be7ecb4 to your computer and use it in GitHub Desktop.
PHP: array reset key values and filter empty
<?php
// RESET KEY VALUES TO START FORM 0 AND REMOVE EMPTY/NULL ENTRIES
$array =array_values(array_filter($array));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment