av一区二区在线观看_亚洲男人的天堂网站_日韩亚洲视频_在线成人免费_欧美日韩精品免费观看视频_久草视

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

深入理解php中unset()

瀏覽:64日期:2022-09-08 08:20:50
概述

unset()經(jīng)常會(huì)被用到,用于銷毀指定的變量,但它有自己的行為模式,如果不仔細(xì)的話可能會(huì)被中文解釋給迷惑:

先來看看官方文檔的說法:

unset  —— unset a given variable

void unset (mixed $var [,mixed $...]); 

parameters:

var:The variable to be unset.    //要unset的變量

...:Another variable ... //其他需要unset的變量

return Values:No value is returned.    //unset不返回值

Because this is a language construct and not a function,it cannot be called using variable functions.

//unset()是語(yǔ)言結(jié)構(gòu),不是函數(shù),因此不能被函數(shù)變量調(diào)用,具體參照函數(shù)變量。

使用function_exists(’unset’)返回的false,以此證明unset并不是一個(gè)函數(shù),所以無(wú)法使用$fun=’unset’;$fun()的方式調(diào)用unset()

It is possible to unset even object properties visible in current context.

//通用環(huán)境下unset可以銷毀對(duì)象或者對(duì)象的可見屬性(public)

It is not possible to unset $this inside an object method since PHP5

在php5之前unset無(wú)法銷毀對(duì)象中的$this方法

when using unset() on inaccessible  object properties,the __unset() overloading method will be called,if declare.

當(dāng)unset()無(wú)法銷毀對(duì)象中的屬性,例如私有屬性,保護(hù)屬性,那么會(huì)自動(dòng)加載對(duì)象中的__unset方法。

description:

unset() destroys the specified variables.     //unset()銷毀指定的變量

The behavior of unset() inside of a function can vary dependiing on what type of variable you are attempting to destroy.

//unset()的行為在函數(shù)內(nèi)部可以根據(jù)你所指定銷毀的變量類型變化。

變化情況情況一:

if a globalized variable is unset() inside of a function,only the local variable is destroyed.The variable in the calling environment will retain the same value as before unset() was called.

如果在函數(shù)內(nèi)一個(gè)使用global使其全局化的變量,使用unset進(jìn)行銷毀,那么只有局部的變量會(huì)被銷毀,在調(diào)用環(huán)境的變量將會(huì)保留沒有使用unset()銷毀之前的調(diào)用的變量值。

the example:

<?phpfunction destroy_foo() { global $foo; unset($foo);}$foo = ’bar’;destroy_foo();echo $foo;?>

the above example will output:bar

這是官方文檔的例子,可能這樣還是不太明顯,把上面的例子改成下面這樣,一切就很清晰了。

<?php function des(){global $foo;$foo=’bars’;unset($foo);echo $foo;}$foo=’bar’;echo 'The globalized variable is unset() inside of a function:';des();echo '<br/>';echo 'The variable in the calling environment:';echo $foo;

上面的例子會(huì)返回如下結(jié)果:

深入理解php中unset()

可以看到函數(shù)內(nèi)echo $foo會(huì)得到錯(cuò)誤提示該變量沒有定義,因?yàn)閡nset將$foo在函數(shù)內(nèi)的局部變量銷毀了。

而外部調(diào)用環(huán)境的$foo仍保留著沒有被unset進(jìn)行銷毀,上面官方描述上寫了調(diào)用環(huán)境的$foo將保留的是在使用unset()前的變量值,因此echo出bars,而不是bar。

to unset() a global variable inside of a function,then use the $GLOBALS array to do so.

如果要用unset()銷毀函數(shù)中的全局變量,應(yīng)該使用$GLOBALS數(shù)組形式

function destroy_foo(){unset($GLOBALS[’foo’]);}$foo = ’bar’;destroy_foo();echo $foo;

the above example whill output: Notice: Undefined variable: foo in ...

延伸:

這里可以明確一點(diǎn),函數(shù)內(nèi)global修飾的變量$var會(huì)使其全局化,但和$GLOBALS[’var’]性質(zhì)不同,雖然他們都是使用的外部調(diào)用環(huán)境的$var,但是函數(shù)內(nèi)global $var里保存的只是外部環(huán)境調(diào)用變量$val的一個(gè)指針或者同名引用,而$GLOBALS[’var’]是外部調(diào)用環(huán)境$var本身,因此unset在函數(shù)內(nèi)對(duì)兩者進(jìn)行銷毀會(huì)產(chǎn)生上面例子的不同的原因,前者銷毀的只是保存同名引用或者指針的變量$var,后者銷毀的是外部調(diào)用變量$var本身。

情況二:

if a variable  that is PASSED BY REFERENCE is unset() inside of a function,only the local variable is destroyed.The variable in the calling environment will retain the same value as before unset() was called.

如果一個(gè)被引用的函數(shù)在函數(shù)內(nèi)部使用unset()進(jìn)行銷毀,那么只有函數(shù)內(nèi)部的局部變量被銷毀,而調(diào)用環(huán)境變量仍然會(huì)保留unset()之前被調(diào)用的值。

<?php function foo(&$bar){unset($bar);$bar='blah';}$bar=’something’;echo $bar.'n';foo($bar);echo $bar.'n';

The above example will output:something something

這個(gè)和上面global其實(shí)很相似,函數(shù)內(nèi)部引用的變量$bar其實(shí)保存的是外部環(huán)境變量$bar的指針或者說外部變量$bar的引用,因此unset在函數(shù)內(nèi)部銷毀的并不是外部環(huán)境調(diào)用的變量,因此外部環(huán)境調(diào)用的變量$bar還存在。

情況三:

if a static variable is unset() inside of a function,unset() destroys the variable only in the context of the rest of a function.Following calls will restore the previous value of a variable.

如果是函數(shù)內(nèi)部的靜態(tài)變量使用unset(),unset()銷毀掉函數(shù)內(nèi)部的靜態(tài)變量,但是下次調(diào)用會(huì)恢復(fù)之前該靜態(tài)變量的值。 為了更明顯,下面的例子進(jìn)行對(duì)比,這里對(duì)官方的范例進(jìn)行了修改對(duì)比:

<?php function fun1(){static $count=0;$count++;echo 'before:'.$count.' ';$count=’2’;echo 'after'.$count.' ';}for($i=0;$i<5;$i++){fun1();echo '<br/>';}

output: 

深入理解php中unset()

下面使用unset:

<?php function fun1(){static $count=0;$count++;echo 'before:'.$count.' ';unset($count);$count=’2’;echo 'after'.$count.' ';}for($i=0;$i<5;$i++){fun1();echo '<br/>';}

output: 

深入理解php中unset()

兩個(gè)對(duì)比可以看出,unset只是將函數(shù)內(nèi)部的靜態(tài)變量進(jìn)行了銷毀,但沒有銷毀儲(chǔ)存在內(nèi)存里的該靜態(tài)變量的值,因?yàn)樵诤瘮?shù)內(nèi)部用static聲明的靜態(tài)變量存儲(chǔ)的僅僅是指向內(nèi)存存儲(chǔ)該靜態(tài)變量的一個(gè)指針,因此unset()銷毀的時(shí)候也僅僅是銷毀了該指針,但存儲(chǔ)在內(nèi)存里的靜態(tài)變量值沒有受到影響,因此再次調(diào)用該函數(shù)的時(shí)候,static該變量再次建立了與內(nèi)存中該變量的指針關(guān)系,而上一次調(diào)用時(shí)unset()之前的該變量值依舊存在,因此會(huì)恢復(fù)該變量上一次的值,因此$count進(jìn)行了遞增。

以上就是深入理解php中unset()的詳細(xì)內(nèi)容,更多關(guān)于php unset()的資料請(qǐng)關(guān)注好吧啦網(wǎng)其它相關(guān)文章!

標(biāo)簽: PHP
相關(guān)文章:
主站蜘蛛池模板: 免费成人在线网站 | 国产精品99久久久久久动医院 | 欧美综合久久 | 日韩精品免费在线 | 久草欧美 | 国产乱码一区 | 色一级| 蜜桃av一区二区三区 | 久久免费观看一级毛片 | www.av7788.com | 91精品国产色综合久久不卡98口 | 欧美一区二| 成人av一区二区三区 | 精品欧美一区二区三区久久久小说 | 成人福利在线视频 | 国产日韩一区二区三免费高清 | 亚洲精品粉嫩美女一区 | 日韩中文字幕免费在线 | 蜜桃在线视频 | 国产精品视频一区二区三区 | 酒色成人网 | 在线视频中文字幕 | 亚洲不卡在线视频 | 久久久久九九九九 | 91视频精选 | 中文字幕av网 | 日本视频在线播放 | 日本久久综合 | 亚洲一区二区免费 | 久久精品国产一区 | 国产激情免费视频 | 亚洲91精品 | xx视频在线观看 | 久久亚洲国产精品日日av夜夜 | 国产精品视频免费看 | 日本小电影在线 | 亚洲精品一区二区三区中文字幕 | 久久国产精99精产国高潮 | 午夜视频网 | 91在线精品播放 | 一区二区精品 |