“PHP Globale variable Funktion” Code-Antworten

PHP setzen globale Variablen aus der Funktion

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

PHP Globale variable Funktion

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

Wie machen Sie einen variablen globalen 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
Mushy Mink

Ähnliche Antworten wie “PHP Globale variable Funktion”

Fragen ähnlich wie “PHP Globale variable Funktion”

Weitere verwandte Antworten zu “PHP Globale variable Funktion” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen