- 정보공유
[PHP] get_magic_quotes_gpc 가 on 으로 되어있는경우 해결법.
function destory_quote($gpcstr) {
if ( get_magic_quotes_gpc() == 1 ) $gpcstr = stripslashes($gpcstr);
return $gpcstr;
}
를 등록 후 메인 모듈(main controller)에
$_POST = array_map('destory_quote', $_POST);
를 적용.