How to use global variable in PHP

3 Answers

0 votes
$n = 10; // global variable

function f() 
{
    global $n; // use global keyword
    
    echo $n . "<br />";
}

f();

$n = 20;
echo $n . "<br />";
 
/*
run:

10
20
 
*/

 



answered Oct 17, 2015 by avibootz
0 votes
function mul($a, $b) 
{
    $GLOBALS['m'] = $a * $b;
}
 
mul(2, 3);
echo $m; 

 
/*
run:
 
6
 
*/

 



answered Nov 18, 2015 by avibootz
0 votes
$a = 3;
$b = 2;

function mul() 
{
    $GLOBALS['m'] = $GLOBALS['a'] * $GLOBALS['b'];
}
 
mul();
echo $m; 

 
/*
run:
 
6
 
*/

 



answered Nov 18, 2015 by avibootz

Related questions

1 answer 232 views
1 answer 107 views
4 answers 356 views
2 answers 119 views
119 views asked Jun 9, 2023 by avibootz
1 answer 72 views
72 views asked Jan 22, 2025 by avibootz
...