作用域的說明
作用域:說明名稱用在特定區域。
作用域種類:
[global scope]
避免使用... 但是 PHP 的 SESSION[] 屬於全域變數,作用於所有運行範圍。
[namespace scope]
不常見 (略)。
[class scope]
作用於 Class 宣告定義的 {} 中,稱為 成員 memeber。
[local scope]
作用於函數或是 Lambda 宣告定義的 block {} 區塊中。
[function scope]
label 和 func body 的作用關係。
[statement scope]
作用於 for loop 宣告定義的 () 中。