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

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

ANSWER DOWNLOAD EXAMIANS APP