如何对单引号进行编码

发布于 2024-11-09 06:53:49 字数 486 浏览 0 评论 0原文

我想知道如何使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

策马西风 2024-11-16 06:53:49

我认为每个问题都应该有答案,所以我也在这里发帖。请随意接受其他人刚才发布的答案。

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); or htmlspecialchars($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 '";

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文