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");

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

ANSWER DOWNLOAD EXAMIANS APP