定義和用法
addcslashes() 函數在指定的字符前添加反斜槓。
語法addcslashes(string,characters)
string 必需。規定要檢查的字符串。
characters 可選。規定受 addcslashes() 影響的字符或字符范圍。
提示和注釋
注釋:在對 0,r,n 和 t 應用 addcslashes() 時要小心。在 PHP 中,,,
和 是預定義的轉義序列。
例子
<?
$val = addcslashes($val, \);
?>