コードをコピーします コードは次のとおりです:
//phpの自動バックスラッシュを処理します
if (get_magic_quotes_gpc()) {
functiontripslashes_deep($value)
{
$value = is_array($value)
array_map ('stripslashes_deep', $value) :
stripslashes($value);
$_POST = array_map('stripslashes_deep', $_POST); $ _GET);
$_COOKIE = array_map('ストリップスラッシュ_ディープ', $_COOKIE);
http://www.bkjia.com/PHPjc/321016.html
www.bkjia.com
true
http://www.bkjia.com/PHPjc/321016.html技術記事次のようにコードをコピーします。 //php 自動バックスラッシュを処理します if (get_magic_quotes_gpc()) { functiontripslashes_deep($value) { $value = is_array($value) ?