Examveda
Examveda

What will be the output of the following PHP code ?
<?php 
$x = 75;
$y = 25; 
function addition()
{
    $GLOBALS['z'] = $GLOBALS['x'] + $GLOBALS['y'];
}
addition();
echo $z;
?>

A. 100

B. error

C. 75

D. 25

Answer: Option A

Solution(By Examveda Team)

z is a variable present within the $GLOBALS array, it is also accessible from outside the function!

This Question Belongs to PHP >> Functions

Join The Discussion

Related Questions on Functions