PHP Filter
What will be the output of the following PHP code?
$num = "123";
if (!filter_var($num, FILTER_VALIDATE_INT))
echo("Integer is not valid");
else
echo("Integer is valid");

No output is returned
Integer is valid
Integer is not valid
Error

ANSWER DOWNLOAD EXAMIANS APP