“Fungsi Variabel Global PHP” Kode Jawaban

PHP mengatur variabel global dari fungsi

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

Fungsi Variabel Global PHP

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

Bagaimana membuat variabel 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

Jawaban yang mirip dengan “Fungsi Variabel Global PHP”

Pertanyaan yang mirip dengan “Fungsi Variabel Global PHP”

Lebih banyak jawaban terkait untuk “Fungsi Variabel Global PHP” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya