PHP去掉从word直接粘贴过来的没有用格式的函数
2015-01-24信息快讯网
通常我们会遇到直接把word内的内容,直接粘贴到文本编辑器中。这时候会出现在文本编辑器中有一些word内的没用的标签内容
一般处理的方式有二种:1.通过编辑器的JS直接去除。2.提交到后台后,直接用程序去掉无效标签。下面我就分享一个通过PHP的处理方式,成功率可能不是100%。这程序也是在PHP官网上看到的,就顺便粘贴过来了。function ClearHtml($content,$allowtags='') { mb_regex_encoding('UTF-8'); //replace MS special characters first $search = array('/‘/u', '/’/u', '/“/u', '/”/u', '/—/u'); $replace = array('\'', '\'', '"', '"', '-'); $content = preg_replace($search, $replace, $content); //make sure _all_ html entities are converted to the plain ascii equivalents - it appears //in some MS headers, some html entities are encoded and some aren't $content = html_entity_decode($content, ENT_QUOTES, 'UTF-8'); //try to strip out any C style comments first, since these, embedded in html comments, seem to //prevent strip_tags from removing html comments (MS Word introduced combination) if(mb_stripos($content, '/*') !== FALSE){ $content = mb_eregi_replace('#/\*.*?\*/#s', '', $content, 'm'); } //introduce a space into any arithmetic expressions that could be caught by strip_tags so that they won't be //'<1' becomes '< 1'(note: somewhat application specific) $content = preg_replace(array('/<([0-9]+)/'), array('< $1'), $content); $content = strip_tags($content, $allowtags); //eliminate extraneous whitespace from start and end of line, or anywhere there are two or more spaces, convert it to one $content = preg_replace(array('/^\s\s+/', '/\s\s+$/', '/\s\s+/u'), array('', '', ' '), $content); //strip out inline css and simplify style tags $search = array('#<(strong|b)[^>]*>(.*?)</(strong|b)>#isu', '#<(em|i)[^>]*>(.*?)</(em|i)>#isu', '#<u[^>]*>(.*?)</u>#isu'); $replace = array('<b>$2</b>', '<i>$2</i>', '<u>$1</u>'); $content = preg_replace($search, $replace, $content); //on some of the ?newer MS Word exports, where you get conditionals of the form 'if gte mso 9', etc., it appears //that whatever is in one of the html comments prevents strip_tags from eradicating the html comment that contains //some MS Style Definitions - this last bit gets rid of any leftover comments */ $num_matches = preg_match_all("/\<!--/u", $content, $matches); if($num_matches){ $content = preg_replace('/\<!--(.)*--\>/isu', '', $content); } return $content; }
测试使用结果:
<?php $content = ' <!--[if gte mso 9]><xml><w:WordDocument><w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel><w:DisplayHorizontalDrawingGridEvery>0</w:DisplayHorizontalDrawingGridEvery><w:DisplayVerticalDrawingGridEvery>2</w:DisplayVerticalDrawingGridEvery><w:DocumentKind>DocumentNotSpecified</w:DocumentKind><w:DrawingGridVerticalSpacing>7.8</w:DrawingGridVerticalSpacing><w:View>Normal</w:View><w:Compatibility></w:Compatibility><w:Zoom>0</w:Zoom></w:WordDocument></xml><![endif]--> <p class="p0" style="text-indent: 24.0000pt; margin-bottom: 0pt; margin-top: 0pt;"><span style="mso-spacerun: "yes"; font-size: 12.0000pt; font-family: "宋体";">《优伴户外旅行》――让旅行成为习惯!</span></p>越发忙碌的你,是否想给自己放个假?专注工作的你,是否还记得上一次锻炼是什么时候?优伴户外旅行,给你不一样的旅行体验:给心自由,便处处都是风景!</span></p>'; echo ClearHtml($content,'<p>'); /* 得到的结果: <p >《优伴户外旅行》--让旅行成为习惯!</p>越发忙碌的你,是否想给自己放个假?专注工作的你,是否还记得上一次锻炼是什么时候?优伴户外旅行,给你不一样的旅行体验:给心自由,便处处都是风景!</p> */ ?>
解析php防止form重复提交的方法
深入解析php中的foreach问题
zend Framework中的Layout(模块化得布局)详解
解析在zend Farmework下如何创立一个FORM表单
解析zend Framework如何自动加载类
php 备份数据库代码(生成word,excel,json,xml,sql)
解析二进制流接口应用实例 pack、unpack、ord 函数使用方法
Yii PHP Framework实用入门教程(详细介绍)
深入理解:单一入口、MVC、ORM、CURD、ActiveRecord概念
PHP代码保护--Zend Guard的使用详解
web站点获取用户IP的安全方法 HTTP_X_FORWARDED_FOR检验
基于wordpress主题制作的具体实现步骤
整理的一些实用WordPress后台MySQL操作命令
将博客园(cnblogs.com)数据导入到wordpress的代码
PHP学习笔记 IIS7下安装配置php环境
php daddslashes()和 saddslashes()有哪些区别分析
记录PHP错误日志 display_errors与log_errors的区别
php在程序中将网页生成word文档并提供下载的代码
Linux下CoreSeek及PHP扩展模块的安装
如何获知PHP程序占用多少内存(memory_get_usage)
PHP管理内存函数 memory_get_usage()使用介绍
php获取ip的三个属性区别介绍(HTTP_X_FORWARDED_FOR,HTTP_VIA,REMOTE_ADDR)
PHP 中关于ord($str)>0x80的详细说明
Zend Framework中的简单工厂模式 图文
工厂模式在Zend Framework中应用介绍
PHP中将网页导出为Word文档的代码
php的chr和ord函数实现字符加减乘除运算实现代码
Array of country list in PHP with Zend Framework