在php中,unset()函數主要用於銷毀給定的變量,語法“unset (要銷毀的變數)”,沒有傳回值。如果在函數中unset()一個全域變量,則只是局部變數被銷毀,而在呼叫環境中的變數將保持呼叫unset()之前相同的值。
本教學操作環境:windows7系統、PHP7.1版,DELL G3電腦
#用完一個陣列變數之後要登出這個變數
unset() — 釋放給定的變數。
void unset ( mixed $var [, mixed $... ] )
unset() 銷毀指定的變數。
unset() 在函數中的行為會依賴想要銷毀的變數的型別而有所不同。
如果在函數中 unset() 一個全域變量,則只是局部變數被銷毀,而在呼叫環境中的變數將保持在呼叫 unset() 之前的值。
<?php function destroy_foo() { global $foo; unset($foo); } $foo = 'bar'; destroy_foo(); echo $foo; ?>
上例中只是在函數內部運作。
如果在函數中 unset() 一個靜態變量,那麼在函數內部此靜態變數將會被銷毀。但是,當再次呼叫此函數時,此靜態變數將被復原為上次被銷毀之前的值。
<?php function foo() { static $bar; $bar++; echo "Before unset: $bar, "; unset($bar); $bar = 23; echo "after unset: $bar\n"; } foo(); foo(); foo(); ?>
以上例程會輸出:
Before unset: 1, after unset: 23 Before unset: 2, after unset: 23 Before unset: 3, after unset: 23
推薦學習:《PHP影片教學》
以上是php中unset()的用法是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!