Super global variables are built-in variables that are always available in all scopes.
Супер глобал хувьсагчид нь бүх хүрээнд үргэлж бэлэн байдаг хувьсагч юм.
PHP $GLOBALS #
$GLOBALS is a PHP super global variable which is used to access global variables from anywhere in the PHP script (also from within functions or methods).
$ GLOBALS нь PHP скриптийн хаанаас ч хамаагүй глобал хувьсагчуудад нэвтрэхэд хэрэглэгддэг PHP супер глобал хувьсагч юм.
PHP stores all global variables in an array called $GLOBALS[index]. The index holds the name of the variable.
PHP нь global бүх хувьсагчдыг $GLOBALS[index] нэртэй массивт хадгалдаг. Индекс нь хувьсагчийн нэрийг агуулдаг.
The example below shows how to use the super global variable $GLOBALS:
Доорхи жишээнд super global хувьсагч $ GLOBALS-ийг хэрхэн ашиглахыг харуулав.
<?php
$x = 75;
$y = 25;
function addition() {
$GLOBALS['z'] = $GLOBALS['x'] + $GLOBALS['y'];
}
addition();
echo $z;
?>
In the example above, since z is a variable present within the $GLOBALS array, it is also accessible from outside the function!
Дээрх жишээнд z нь $ GLOBALS багцын доторх хувьсагч тул функцийн гадна талаас хандах боломжтой юм!