HTML 如何显示英文单、双引号

//    过滤英文引号替换成中文引号
function pregstring($str){
return preg_replace('/"([^"]*)/','&quot${1}',$str);
// return $str=str_replace('"','&quot',$str);
}
HTML 字符实体 < &gt: &等

http://blog.csdn.net/niu_hao/article/details/42319951
原文地址:https://www.cnblogs.com/18JG23/p/6797113.html