」; echo htmlentities($str, ENT_QU"/> 」; echo htmlentities($str, ENT_QU">
ホームページ >バックエンド開発 >PHPチュートリアル >htmlentities() で一重引用符と二重引用符が変換されない問題の解決策
htmlentities() 一重引用符と二重引用符が変換されない
<!-- 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); ?>
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> John & 'Adams'<br />John & 'Adams'<br />John & 'Adams'