文法: string addslashes(string str);
內容說明
本函數使需要讓資料庫處理的字串中引號的部份加上斜線,以供資料庫查詢 (query) 能順利運作。這些會被改的字元包括單引號 (')、雙引號 (")、反斜線 backslash (\) 以及Null 字元 NUL (the null byte)。
================================================================
1,表單提交中addslashes的表現。
首先要看get_magic_quotes_gpc()的值,一般為 1 。這時候從 <TEXTAREA> 提交的內容會自動加上斜線。
比如輸入 ' 變成 \' , " 變成 \" , \ 變成 \\
例子:
PHP代碼:
複製代碼 代碼如下:<html><head><title>test</title></head>
<body>
<FORM action="" method=post>
<TEXTAREA name=message rows="18" cols="55" >default text</TEXTAREA>
<INPUT type=submit value=Submit name=submit></FORM>
<?php
echo get_magic_quotes_gpc().
" A ".$_POST['message'].
" B ".stripslashes($_POST['message']);
?>
</body></html>
輸入:include('/home/me/myfile');
輸出:1 A include(\'/home/me/myfile\'); B include('/home/me/myfile');
總結:get_magic_quotes_gpc()等於1的情況下,如果不輸入資料庫,那你得到的結果是加了斜線的。
2,提交輸入資料庫時addslashes的表現。
例子:
PHP代碼: 複製代碼 代碼如下:<html><head><title>test</title></head>
<body>
<FORM action="" method=post>
<TEXTAREA name=message rows="18" cols="55" >default text</TEXTAREA>
<INPUT type=submit value=Submit name=submit></FORM>
<?php
require_once('includes/common.php');
$db->query("INSERT INTO `testtable` ( id , content ) VALUES ('1' , '".$_POST['message']."')");
$query=$db->query("select * from `testtable` where `id`= 1;");
$Result=$db->fetch_array($query);
echo get_magic_quotes_gpc().
" A ".$_POST['message'].
" B ".$Result['content'];
?>
</body></html>
輸入:include('/home/me/myfile');
輸出:1 A include(\'/home/me/myfile\'); B include('/home/me/myfile');
總結:get_magic_quotes_gpc()等於1的情況下,如果輸入資料庫後,再從資料庫直接讀取的時候,你不做任何修改就可以得到輸入的字串。
3, get_magic_quotes_gpc()
get_magic_quotes_gpc()在伺服器是的設定是不能runtime修改的,也就是說,你必須在你的網頁代碼中預先考慮好不同的情況,不然,當你提交資料的時候,你還不知道伺服器給你加了斜線沒有。以下兩個網上流行的函數可能是大家需要的,個人喜歡第二個:
PHP代碼: 複製代碼 代碼如下:function my_addslashes( $message ){
if(get_magic_quotes_gpc()== 1 ){
return $message;
}else{
if(is_array($message)==true){
while(list($key,$value)=each($message)){
$message[$key]=my_addslashes($value);
}
return $message;
}else{
return addslashes($message);
}
}
}
PHP代碼: 複製代碼 代碼如下:function my_addslashes($data){
if(!get_magic_quotes_gpc()) {
return is_array($data)?array_map('AddSlashes',$data):addslashes($data);
} else {
Return $data;
}
}
簡單的解釋就是,如果get_magic_quotes_gpc()等於 1 (伺服器預設設定為 1 ),那我們的字串是可以直接入庫的,不修改。不然,我們才用addslashes函數。