長整數函式種類: PHP 系統功能內容說明本函式取得 PHP 環境配置的變數magic_quotes_gpc (GPC, Get/Post/Cookie) 值。
基本介紹
- 中文名:get_magic_quotes_gpc
- 類型:函式
- 隸屬:程式代碼
- 語法: : long
長整數函式種類: PHP 系統功能內容說明本函式取得 PHP 環境配置的變數magic_quotes_gpc (GPC, Get/Post/Cookie) 值。
get_magic_quotes_gpc取得 PHP環境變數magic_quotes_gpc 的值。語法: long get_magic_quotes_gpc(void);返回值:長整數函式種類: PHP 系統功能內容說明本函式取得 PHP 環境配置的變數magic_quotes_gpc (GPC, Get/Post/Cookie) 值。
if(get_magic_quotes_gpc()){function stripslashes_deep($value){$value = is_array($value) ? array_map('stripslashes_deep', $value) : (isset($value) ? stripslashes($value) : null);...
if (get_magic_quotes_gpc()){ $value = stripslashes($value);} // Quote if not a number if (!is_numeric($value)){ $value = "'" . mysql_real_escape_string($value) . "'";} return $value;} $con = mysql...
magic_quotes_gpc = On 自動對 get post cookie的內容進行轉義 get_magic_quotes_gpc()檢測是否打開magic_quotes_gpc stripslashes() 去除字元串中的反斜槓 附表 PHP字元串函式館,收集了51個PHP處理字元串的函式。包括計算字元串長度...