Created
September 3, 2011 16:56
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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