Skip to content

Instantly share code, notes, and snippets.

@machour
Created August 15, 2017 08:10
Show Gist options
  • Save machour/c6c423b8641cba8c3f68884731631392 to your computer and use it in GitHub Desktop.
Save machour/c6c423b8641cba8c3f68884731631392 to your computer and use it in GitHub Desktop.
Advanced form
if ($query) {
$values = array_filter($values, function($var) use($query) {
return stripos($var, $query) !== false;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment