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 字符的 mySql dB。 我怎样才能将这些字符转换成特殊字符,比如&(&) 变成了&? PHP 有htmlspecialchars,是否有允许我执行此操作的 SQL 命令,或者我必须使用 PHP 创建一个新表? 这将是一次转换,而不是每次查找。
&
&
htmlspecialchars
因此,将单引号保留在表中,并在输出时在 PHP 中处理它们,使用htmlspecialchars()
htmlspecialchars()