“Função de variável global PHP” Respostas de código

PHP Defina variáveis ​​globais da função

<?php 
function setGlobalVariable() {
    $GLOBALS['variable_name'] = "Some Value";
}
setGlobalVariable();
echo $variable_name;
// Outputs: Some Value
MaestroError

Função de variável global PHP

<?php
  $myVariable = "a";
  function changeVar($newVar) {
    global $myVariable
    $myVariable = "b";
  }
  echo $myVariable; // Should echo b
?>
Difficult Dugong

Como fazer uma variável PHP global

$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
Mushy Mink

Respostas semelhantes a “Função de variável global PHP”

Perguntas semelhantes a “Função de variável global PHP”

Mais respostas relacionadas para “Função de variável global PHP” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código