Variable handling
- 簡介
- 安裝/配置
- 預定義常量
- Variable handling 函式
- boolval — 獲取變數的布爾值
- debug_zval_dump — Dumps a string representation of an internal zval structure to output
- doubleval — floatval 的別名
- empty — 檢查一個變數是否為空
- floatval — 獲取變數的浮點值
- get_debug_type — Gets the type name of a variable in a way that is suitable for debugging
- get_defined_vars — 返回由所有已定義變數所組成的陣列
- get_resource_id — Returns an integer identifier for the given resource
- get_resource_type — 返回資源(resource)型別
- gettype — 獲取變數的型別
- intval — 獲取變數的整數值
- is_array — 檢測變數是否是陣列
- is_bool — 檢測變數是否是布爾值
- is_callable — 檢測參數是否為合法的可呼叫結構
- is_countable — Verify that the contents of a variable is a countable value
- is_double — is_float 的別名
- is_float — 檢測變數是否是浮點型
- is_int — 檢測變數是否是整數
- is_integer — is_int 的別名
- is_iterable — Verify that the contents of a variable is an iterable value
- is_long — is_int 的別名
- is_null — 檢測變數是否為 null
- is_numeric — 檢測變數是否為數字或數字字串
- is_object — 檢測變數是否是一個對像
- is_real — is_float 的別名
- is_resource — 檢測變數是否為資源型別
- is_scalar — 檢測變數是否是一個標量
- is_string — 檢測變數是否是字串
- isset — 檢測變數是否已聲明並且其值不為 null
- print_r — 以易於理解的格式列印變數。
- serialize — 產生一個可儲存的值的表示
- settype — 設定變數的型別
- strval — 獲取變數的字串值
- unserialize — 從已儲存的表示中建立 PHP 的值
- unset — 釋放給定的變數
- var_dump — 列印變數的相關資訊
- var_export — 輸出或返回變數的可解析字串表示