Examveda
Examveda

What will be the output of the following PHP code ?
<?php
$user = array("Ashley", "Bale", "Shrek", "Blank");
for ($x=0; $x < count($user) - 1; $x++)
{
    if ($user[$x++] == "Shrek") 
    continue;
    printf ($user[$x]); 
}
?>

A. AshleyBaleBlank

B. Bale

C. AshleyShrek

D. BaleBlank

Answer: Option A

Solution(By Examveda Team)

Only Bale is printed as $x++ is done before printing and then checked.

This Question Belongs to PHP >> Control Structures(Loop In PHP)

Join The Discussion

Related Questions on Control Structures(Loop in PHP)