星期二, 7月 22, 2014

How to turn off magic quotes on shared hosting?

 


ini_set('magic_quotes_gpc',0);// doesn't work

在連線資料庫後 加入以下程式代碼


if( in_array( strtolower( ini_get('magic_quotes_gpc')), array('1','on'))){
$_POST
= array_map('stripslashes', $_POST );
$_GET
= array_map('stripslashes', $_GET );
$_COOKIE
= array_map('stripslashes', $_COOKIE );}

沒有留言: