PHP Functions
What will be the output of the following PHP code ?
$var = 10;
function one()
{
echo $var;
}
one();

Error
10
None of the Mentioned
No Output

ANSWER DOWNLOAD EXAMIANS APP