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.
有谁知道任何在线或离线软件,例如,一段带有引号和其他字符的文本并将其转换为 html 实体?
我不是在寻找要转换的普通字母字符,只是引号和破折号等。
我问的原因是我们有一个文案部门,他们坚持使用 Word 为网站编写副本,但是将其复制并粘贴到网站中,同时必须找到奇怪的字符既费时又乏味。
提前致谢
PHP 函数htmlspecialchars使这很容易。您可以轻松地制作一个小型 html 表单,将其发布到写出结果的 php 脚本中。
htmlspecialchars
PHP:
echo htmlspecialchars($_POST['input']);
HTML:
<form method="post"> <textarea name="input"></textarea> </form>
http://php.net/htmlspecialchars