Heim  >  Artikel  >  Backend-Entwicklung  >  PHP global 关键字,phpglobal关键字_PHP教程

PHP global 关键字,phpglobal关键字_PHP教程

WBOY
WBOYOriginal
2016-07-12 09:07:45963Durchsuche

PHP global 关键字,phpglobal关键字

global关键字用于在函数内部访问全局变量。

<?php
$x = 5;
$y = 10;

function myTest(){  
    global $x,$y;
    $x = $x+$y;
}

myTest();
echo $x; //15

 php将所有全局变量存储在一个名为$GLOBALS[index]的数组里,index保存变量的名称,这个数组可以在函数内部访问,也可以直接更新全局变量;

上面的实例可以改写成下面这个样:

<?php
$x = 5;
$y=10;

function myTest(){
    $GLOBALS['x'] = $GLOBALS['x'] + $GLOBALS['y'];
}

myTest();
echo $x; //15

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1059468.htmlTechArticlePHP global 关键字,phpglobal关键字 global关键字用于在函数内部访问全局变量。 ?php$x = 5;$y = 10;function myTest(){ global $x,$y; $x = $x+$y;}myTest();echo $x...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn