基本上我把简单的文字放在BLOG帖子的标题中 - >
This is some random title with "quotation" marks
我得到的结果就是这个
This is some random title with
HTML Purifier在第一个引号之后剪切所有内容,我正在寻找一种引号的方法,并且不会在它们之后切断字符串。
由于
答案 0 :(得分:1)
$clean = htmlspecialchars(
'This is some random title with "quotation" marks',
ENT_QUOTES,
"UTF-8"
);