Skip to content

Instantly share code, notes, and snippets.

@ClaudioVarandas
Created September 10, 2015 09:35
Show Gist options
  • Save ClaudioVarandas/bc1dcb943b527d203fba to your computer and use it in GitHub Desktop.
Save ClaudioVarandas/bc1dcb943b527d203fba to your computer and use it in GitHub Desktop.
remove empty value from imput
<?php
$data = array_filter($data, function ($value) {
return $value !== '';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment