PHP addslashes() 函數(shù)
實(shí)例
在每個(gè)雙引號(hào)(")前添加反斜杠:
?php
$str = addslashes('What does "yolo" mean?');
echo($str);
?>
定義和用法
addslashes()
函數(shù)返回在預(yù)定義的字符前添加反斜杠的字符串。
預(yù)定義字符是:
- 單引號(hào)(')
- 雙引號(hào)(")
- 反斜杠(\)
- NULL
提示:該函數(shù)可用于為存儲(chǔ)在數(shù)據(jù)庫(kù)中的字符串以及數(shù)據(jù)庫(kù)查詢語(yǔ)句準(zhǔn)備合適的字符串。
注釋:默認(rèn)情況下,PHP 指令 magic_quotes_gpc 為 on,對(duì)所有的 GET、POST 和 COOKIE 數(shù)據(jù)自動(dòng)運(yùn)行addslashes()
。不要對(duì)已經(jīng)被 magic_quotes_gpc 轉(zhuǎn)義過(guò)的字符串使用addslashes()
,因?yàn)檫@樣會(huì)導(dǎo)致雙層轉(zhuǎn)義。遇到這種情況時(shí)可以使用函數(shù)get_magic_quotes_gpc()
進(jìn)行檢測(cè)。
語(yǔ)法
實(shí)例 1
向字符串中的預(yù)定義字符添加反斜杠:
?php
$str = "Who's Peter Griffin?";
echo $str . " This is not safe in a database query.br>";
echo addslashes($str) . " This is safe in a database query.";
?>
總結(jié)
以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對(duì)腳本之家的支持。如果你想了解更多相關(guān)內(nèi)容請(qǐng)查看下面相關(guān)鏈接
您可能感興趣的文章:- PHP count_chars()函數(shù)講解
- PHP安裝memcache擴(kuò)展的步驟講解
- PHP配置ZendOpcache插件加速
- PHP convert_uudecode()函數(shù)講解
- PHP安裝BCMath擴(kuò)展的方法
- PHP convert_cyr_string()函數(shù)講解
- PHP chunk_split()函數(shù)講解
- PHP chr()函數(shù)講解
- PHP chop()函數(shù)講解
- PHP crc32()函數(shù)講解