Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我在我的 php 页面上查看源代码时,我得到"了一个报价。但相反,我想"在源代码中使用。我无法控制手动替换它,所以我想知道是否有功能可以做这样的事情。
"
"
如果您有权访问 PHP 并希望将所有 html 特殊字符更改为其合法变体,请使用:
print htmlspecialchars_decode($string);
您可以非常简单地使用str_replace.
str_replace
$string = str_replace('"', '"', $string);
然而,正如李维斯所说,为什么不就这样离开呢?它应该对显示没有影响。