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

AshleyBale
Shrek
AshleyBaleBlank
ShrekBlank

ANSWER DOWNLOAD EXAMIANS APP

Basic PHP
strval()

Accepts a value and converts it into an string dictionary
None of above
Accepts a value and converts it into a string array
Accepts a value and converts it into string equivalent

ANSWER DOWNLOAD EXAMIANS APP