What will be the output of the following PHP code ?
<?php
$i = 5;
while (--$i > 0 || ++$i)
{
print $i;
}
?>
<?php
$i = 5;
while (--$i > 0 || ++$i)
{
print $i;
}
?>
A. 54321111111….infinitely
B. 555555555…infinitely
C. 54321
D. 5
Answer: Option A

432111111111...