Skip to content

Instantly share code, notes, and snippets.

@caferrari
Last active May 30, 2019 10:17
Show Gist options
  • Save caferrari/6000182 to your computer and use it in GitHub Desktop.
Save caferrari/6000182 to your computer and use it in GitHub Desktop.
array_filter
<?php
// PHP >= 5.3
// resposta: https://www.facebook.com/groups/nao.tem.biscoito/permalink/10153102397605160/
$required = 282261;
$itens = array_filter($seuArray, function($item) use ($required) {
return $item[0] == $required;
});
var_dump($itens);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment