What will be the output of the following PHP code?
<?php
$user = array("Ashley", "Bale", "Shrek", "Blank");
for ($x=0; $x < count($user); $x++) {
if ($user[$x] == "Shrek") continue;
printf ($user[$x]);
}
?>
- AshleyBale
- AshleyBaleBlank
- ShrekBlank
- Shrek
(b).AshleyBaleBlank
need an explanation for this answer? contact us directly to get an explanation for this answer