hinom 5 Denunciar post Postado Outubro 24, 2008 Exercise 36 Consider the following code: $x = 0xFFFE; $y = 2; $z = $x && $y What will be the value of $z? A. 0 B. 1 C. 2 D. 3 E. 4 Compartilhar este post Link para o post Compartilhar em outros sites
hinom 5 Denunciar post Postado Outubro 24, 2008 Answer: B Explanation $x && $y return boolean true that output 1 A && B is same that if( A && B ) { } This is alternative syntax for control structures http://php.net/manual/control-structures.a...tive-syntax.php Compartilhar este post Link para o post Compartilhar em outros sites