Q6
What will be the output of the following PHP code? array ("min_range"=>0, "max_range"=>256)); if (!filter_var( var, FILTER_VALIDATE_INT, int_options)) echo("Integer is not valid"); else echo("Integer is valid"); ?>
A.
No output is returned
B.
Integer is not valid
AnswerC.
Integer is valid
D.
Error
Answer: Option B
Solution
Answer: Option B
Solution:
Since the integer is “300” it is not in the specified range, and the output of the code above will be: “Integer is not valid”.