如何编码单引号

时间:2011-05-20 03:20:34

标签: php html html-entities

我想知道我在代码中如何使用htmlentities •' for 'How to escape single quote

hows apostropheIE

中工作
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++;
}

1 个答案:

答案 0 :(得分:16)

我认为每个问题都应该有答案,所以我也在这里发帖。请随时接受别人在那里发布的答案。

htmlentities($str, ENT_QUOTES);htmlspecialchars($str, ENT_QUOTES);应该使用要转义的变量或字符串替换$ str的技巧(例如$row[0])。如果您只想添加它,您只需添加它:print "Here's an apostrophe '";