Skip to content

Instantly share code, notes, and snippets.

@cesarAugusto1994
Created October 14, 2016 20:11
Show Gist options
  • Save cesarAugusto1994/b8478023d28773698a5d12d7c1752310 to your computer and use it in GitHub Desktop.
Save cesarAugusto1994/b8478023d28773698a5d12d7c1752310 to your computer and use it in GitHub Desktop.
Filtrar Quantidade de itens retornados da conferencia
foreach ($conferencia['itens'] as $item) {
if(4 != $item['situacaoConserto']['id']) {
continue;
}
$key = trim($item['produto']['id']) . $item['grade'];
if(!isset($result[$key])) {
$result[$key] = 0;
}
$result[$key]++;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment