Maison > développement back-end > tutoriel php > htmlentities() 单双引号不转换解决办法

htmlentities() 单双引号不转换解决办法

WBOY
Libérer: 2016-06-13 10:10:15
original
801 Les gens l'ont consulté

htmlentities() 单双引号不转换

PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><?php $str = "John & 'Adams'";echo htmlentities($str, ENT_COMPAT);echo "<br />";echo htmlentities($str, ENT_QUOTES);echo "<br>";echo htmlentities($str, ENT_NOQUOTES);?>
Copier après la connexion


如下是我截图,为什么对单双引号不转换??

如下是我浏览器输出

HTML code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->John & 'Adams'<br>John & 'Adams'<br>John & 'Adams'
Copier après la connexion




------解决方案--------------------
那么那些&打头的是什么?
------解决方案--------------------
?ENT_COMPAT - 默认。仅编码双引号。
?ENT_QUOTES - 编码双引号和单引号。
?ENT_NOQUOTES - 不编码任何引号。
------解决方案--------------------
' 就是单引号
------解决方案--------------------
估计楼主看的是HTML在浏览器中显示出来的效果,而不是看的HTML源码
Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal