如何对单引号进行编码
我想知道如何使用 htmlentities •'对于我的代码中的 '
? 如何转义单引号
撇号
在IE
while($row = pg_fetch_array($result))
{
if($row[3]=="")
{
$vmobj_Array[$i]=$row[0]."***".$row[1]."***".$row[2];
}
else
{
$vmobj_Array[$i]=$row[0].' ( '.$row[3].' )'."***".$row[1]."***".$row[2];
}
$i++;
}
I want to know how i use htmlentities •' for '
in my code ?
How to escape single quote
hows apostrophe
work in IE
while($row = pg_fetch_array($result))
{
if($row[3]=="")
{
$vmobj_Array[$i]=$row[0]."***".$row[1]."***".$row[2];
}
else
{
$vmobj_Array[$i]=$row[0].' ( '.$row[3].' )'."***".$row[1]."***".$row[2];
}
$i++;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为每个问题都应该有答案,所以我也在这里发帖。请随意接受其他人刚才发布的答案。
htmlentities($str, ENT_QUOTES);
或htmlspecialchars($str, ENT_QUOTES);
应该可以解决 $str 被您想要转义的变量或字符串替换的问题(例如,$row[0]
)。如果您只想添加它,您需要做的就是添加它:print "Here's an apostrope '";
I think every question should have an answer, so I'm posting here as well. Feel free to accept the answer someone else posted there just now.
htmlentities($str, ENT_QUOTES);
orhtmlspecialchars($str, ENT_QUOTES);
should do the trick where $str should be replaced by the variable or string you want to escape (e.g.,$row[0]
). If you just want to add it, all you need to do is add it:print "Here's an apostrophe '";