replace backslach and double quotation mark


'&','&'
'\n','
'

'’',"'"
'<','<'
'>','>'
'™',''


escape

------------------------------------------------------------
addslashes()

單引號 雙引號 反斜線 NULL 添加反斜線

urlencode()

針對參數值

htmlentities()
htmlspecialchars()



  • '&' (and符號)轉換成 '&'
  • '"' (雙引號)轉換成 '"'
  • '<' (小於)轉換成 '<'
  • '>' (大於)轉換成 '>'



針對整個?後面的查詢字串

-------------------------------------------------------------
ESCAPE

First)
\     ->     \\
Second)
"     ->     \"