Answers for "how make a variable global php"

PHP
1

how make a variable global php

$a = 1;
$b = 2;
function Sum(){
    global $a, $b; // allows access to vars outside of function
    $b = $a + $b;
} 

Sum();
echo $b; // output is 3
Posted by: Guest on April-26-2021
0

php globals

$GLOBALS["foo"]
Posted by: Guest on October-21-2020

Code answers related to "how make a variable global php"

Browse Popular Code Answers by Language