萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> php編程 >> php addslashes 與stripslashes 使用

php addslashes 與stripslashes 使用

下面我們來看看有關於php php addslashes 與stripslashes 使用教程吧,好了費話不說多了來看看喜歡不哦。

$magic_quotes_gpc = get_magic_quotes_gpc();


$register_globals = @ini_get('register_globals');


if(!$register_globals || !$magic_quotes_gpc) {


        extract($mc->daddslashes($_GET ), EXTR_OVERWRITE);


        extract($mc->daddslashes($_POST), EXTR_OVERWRITE);


        if(!$magic_quotes_gpc) {


                $_SERVER = $mc->daddslashes($_SERVER);


                $_COOKIE = $mc->daddslashes($_COOKIE);
        }
}

copyright © 萬盛學電腦網 all rights reserved