无码国产一区二区三区四区,久久精品国产亚洲av热片 ,免费无码又爽又高潮视频 http://www.86956464.com/blog 中山php|最優(yōu)網絡 Mon, 13 May 2013 04:56:43 +0000 en hourly 1 http://wordpress.org/?v=3.1.4 php函數體里調用外部變量 http://www.86956464.com/blog/view-143.html http://www.86956464.com/blog/view-143.html#comments Thu, 18 Aug 2011 13:47:21 +0000 lin http://www.86956464.com/blog/?p=143

在程序開發(fā)中,有時在一個函數里面需要調用到函數體以外的變量,這個時候有幾種方法

可以再聲明變量的時候聲明為全局變量,如:

global $string;

$string = 'test';

function __(){
return $string;
}

也可以在函數的內部聲明,如:

$string = 'test';

function __(){

global $string;
return $string;
}

當需要調用的變量只有少數的時候可以這樣用,那么如果是需要使用大量已經定義過的變量或者甚至是全部變量的時候如何處理呢?可以這樣處理,用到PHP的超全局數組$GLOBALS和extract()函數

PHP手冊對$GLOBAL的說明是這樣的:

An associative array containing references to all variables which are currently defined in the global scope of the script. The variable names are the keys of the array.

Note: This is a 'superglobal', or automatic global, variable. This simply means that it is available in all scopes throughout a script. There is no need to do global $variable; to access it within functions or methods.

大概意思是:

這個一個由所有變量組成的數組。變量名就是該數組的索引。并且該數組是超全局數組,在使用時不必聲明global $variable;

extract()函數的作用是把數組的鍵名作為變量名,數組的鍵值作為變量的值。

所以綜上所述,只要在函數體里面寫上下面一句話就可以實現調用到外部的所有變量了

$string = 'test';

$num = 100;

function __(){

echo$string,$num;
}

extract($GLOBALS,EXTR_SKIP);

]]> http://www.86956464.com/blog/view-143.html/feed 26

景谷| 聂荣县| 达尔| 黑河市| 翁牛特旗| 怀柔区| 克拉玛依市| 宜宾县| 余干县| 敦煌市| 九江市| 屏东市| 金溪县| 蒙自县| 江源县| 阳朔县| 三河市| 汉寿县| 惠州市| 临泽县| 阿拉善左旗| 汨罗市| 修武县| 新丰县| 郓城县| 望城县| 白玉县| 甘肃省| 甘泉县| 高阳县| 永吉县| 芮城县| 河东区| 卓尼县| 工布江达县| 南部县| 团风县| 鸡东县| 永靖县| 长治市| 越西县|