Skip to content

Instantly share code, notes, and snippets.

@netojoaobatista
Forked from anonymous/index.php
Last active June 27, 2019 13:13
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save netojoaobatista/5547082 to your computer and use it in GitHub Desktop.
Save netojoaobatista/5547082 to your computer and use it in GitHub Desktop.
<?php
$postos = array(
'A' => 'atendimento.jpg',
'B' => 'banheiros.jpg',
'1' => 'borracharia.jpg',
'2' => 'brindes.jpg',
'C' => 'churrascaria.jpg',
'E' => 'estacionamento.jpg',
'G' => 'gasolina.jpg',
'L' => 'loja.jpg',
'3' => 'lubrificantes.jpg',
'T' => 'troca.jpg'
);
$codigo = str_split('CABTG');
$atendimentos = array_intersect_key($postos, array_combine($codigo, $codigo));
//Para exibir as imagens
printf('<img src="%s" />', implode('" /><img src="', $atendimentos));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment