Examveda
Examveda

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

A. Error

B. 10

C. No Output

D. None of the Mentioned

Answer: Option C

Solution(By Examveda Team)

$var is not global and hence is not available for one().

This Question Belongs to PHP >> Functions

Join The Discussion

Related Questions on Functions