在區域範圍中要清除全域變數時,要注意使用unset()函式和設為null的結果並不相同,範例如下: <?php $num = 178; function func() { global $num; unset ...
確定! 回上一頁