本文主要和大家分享PHP中magic_quotes_gpc動態關閉無效的問題,希望能幫助大家解決這類問題。
昨天瀏覽線上項目,發現了一個問題:部分文字輸出中的引號前多了一道反斜杠,比如:
引號內容多了"反斜杠"
單從頁面展現的結果來看,猜測應該是PHP中的magic_quotes_gpc配置被開啟了的原因。然後檢查了下程序,發現在入口文件中,已經動態關閉了這個配置:
ini_set('magic_quotes_gpc', 'Off');
為什麼沒有生效呢?
經過一番查找,同事幫忙找到了原因,原來是因為在我動態修改這個配置之前,請求已經被解析了,因此該修改並未針對當次請求生效。
詳見以下網頁,有一位同行也遇到了相同的問題:
https://bugs.php.net/bug.php?id=32867
magic_quotes_gpc is applied while parsing the request before your PHP script gets control so while you can change this setting in your script, it won't have any effect.
.項目,我們也不能直接修改php.ini的配置,因此採用了陌路vs追憶編寫的程式碼,遞歸處理gpc內容:
if (ini_get('magic_quotes_gpc')) { function stripslashesRecursive(array $array) { foreach ($array as $k => $v) { if (is_string($v)) { $array[$k] = stripslashes($v); } else if (is_array($v)) { $array[$k] = stripslashesRecursive($v); } } return $array; } $_GET = stripslashesRecursive($_GET); $_POST = stripslashesRecursive($_POST); }
相關推薦:
php get_magic_quotes_gpc( )函數使用說明
關於php自動轉義問題,配置裡magic_quotes_gpc的歷史遺留問題、
php get_magic_quotes_gpc函數用法介紹
以上是magic_quotes_gpc為什麼動態關閉無效的詳細內容。更多資訊請關注PHP中文網其他相關文章!