1.

What will be the output of the following PHP code ? $a = 1; if ($a--) print "True"; if ($a++) print "False";

A. true
B. false
C. error
D. no output
Answer» B. false


Discussion

No Comment Found