我的部分PHP
代码包括以下URL
字符串的构造:
$msg = $_REQUEST["msg"];
$content = 'action=sendmsg'.
'&user='.rawurlencode($username).
'&password='.rawurlencode($password).
'&to='.rawurlencode($destination).
'&text='.rawurlencode($msg);
当$msg
碰巧包含撇号时,它会以"\'"
.
我需要做什么来确保反斜杠没有被插入PHP
?