1.

What will be the output of the following PHP code ?
<?php
for ($b = 0; $b = -5; $b = 1)
{
print $b;
if ($b != 2)
break;
}
?>

A. 1
B. 2
C. -5
D. Error
E. None of these
Answer» D. Error


Discussion

No Comment Found

Related MCQs