Skip to content

Instantly share code, notes, and snippets.

@InFog
Created September 3, 2011 16:56
Show Gist options
  • Save InFog/1191461 to your computer and use it in GitHub Desktop.
Save InFog/1191461 to your computer and use it in GitHub Desktop.
Associações que vão gerar MUITA CONFUSÃO na sua sessão da tarde
<?php
$a = 'b';
$t = array(
(isset($a)) ? 'Sim' : 'Não' => (isset($a)) ? 'Sim' : 'Não',
'a' => ($a == 'c') ? 'A = C' : 'A != C'
);
print_r($t);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment