摘要: ``` "; //3. htmlspecialchars() conflict with html tags $new = htmlspecialchars("Test"); echo $new; // <a href='test'>Test</a> $new = htmlspecialchars("Test", ENT_QUOTES); echo $new; // <a href='test'> 阅读全文
posted @ 2020-01-25 21:06 Coding_Changes_LIfe 阅读(151) 评论(0) 推荐(0) 编辑