php 变换 html特殊符号
程序员文章站
2022-05-20 20:02:46
...
php 转换 html特殊符号
我写的函数
//转换某些特殊字符
function format_html($str){
$str = str_replace('“', '“',$str);
$str = str_replace('”', '”',$str);
$str = str_replace('·', '·',$str);
$str = str_replace('‘', '‘',$str);
$str = str_replace('’', '’',$str);
$str = str_replace('…', '…', $str);
$str = str_replace('—', '—', $str);
return $str;
}
但是这些符号实在是太多了。网上说的,大概255个。这么多,怎么可能转的完,有没有什么方法?
------解决方案--------------------
....亲不用这么转的 “ 这种符号当网页不识别html语言是就会这么显示 如果页面时full html的话 就是“
------解决方案--------------------
我写的函数
//转换某些特殊字符
function format_html($str){
$str = str_replace('“', '“',$str);
$str = str_replace('”', '”',$str);
$str = str_replace('·', '·',$str);
$str = str_replace('‘', '‘',$str);
$str = str_replace('’', '’',$str);
$str = str_replace('…', '…', $str);
$str = str_replace('—', '—', $str);
return $str;
}
但是这些符号实在是太多了。网上说的,大概255个。这么多,怎么可能转的完,有没有什么方法?
------解决方案--------------------
....亲不用这么转的 “ 这种符号当网页不识别html语言是就会这么显示 如果页面时full html的话 就是“
------解决方案--------------------
- PHP code
htmlspecialchars :$htm = "ab c";echo htmlspecialchars($htm);#源码#<div>ab c</div>#页面#ab c相关文章
相关视频
上一篇: MySql的是否要脱离Linux体系?_MySQL
下一篇: php实现定时创办指定大小文件脚本
推荐阅读
-
PHP HTML DOM 操作
-
apache怎么设置默认文档顺序,index.asp index.php index.html,修改哪个文件? 博客分类: centos apachehttpd.conf默认文档
-
apache怎么设置默认文档顺序,index.asp index.php index.html,修改哪个文件? 博客分类: centos apachehttpd.conf默认文档
-
php正则提取html图片(img)src地址与任意属性的方法
-
PHP获取表单数据与HTML嵌入PHP脚本的实现
-
php自定义函数br2nl实现将html中br换行符转换为文本输入中换行符的方法【与函数nl2br功能相反】
-
PHP/HTML混写的四种方式总结
-
php解析mht文件转换成html的实例
-
PHP实现网页内容html标签补全和过滤的方法小结【2种方法】
-
PHP里面把16进制的图片数据显示在html的img标签上(实现方法)