What will be the output of the following PHP code ?
<?php
$var = 10;
function one()
{
echo $var;
}
one();
?>
<?php
$var = 10;
function one()
{
echo $var;
}
one();
?>A. Error
B. 10
C. No Output
D. None of the Mentioned
Answer: Option C

Join The Discussion