最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

PHP去掉從word直接粘貼過來的沒有用格式的函數(shù)

 更新時間:2012年10月29日 23:03:31   作者:  
通常我們會遇到直接把word內(nèi)的內(nèi)容,直接粘貼到文本編輯器中。這時候會出現(xiàn)在文本編輯器中有一些word內(nèi)的沒用的標簽內(nèi)容
一般處理的方式有二種:1.通過編輯器的JS直接去除。2.提交到后臺后,直接用程序去掉無效標簽。下面我就分享一個通過PHP的處理方式,成功率可能不是100%。這程序也是在PHP官網(wǎng)上看到的,就順便粘貼過來了。
復制代碼 代碼如下:

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;
}

測試使用結(jié)果:
復制代碼 代碼如下:

<?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: "宋體";">《優(yōu)伴戶外旅行》——讓旅行成為習慣!</span></p>越發(fā)忙碌的你,是否想給自己放個假?專注工作的你,是否還記得上一次鍛煉是什么時候?優(yōu)伴戶外旅行,給你不一樣的旅行體驗:給心自由,便處處都是風景!</span></p>';
echo ClearHtml($content,'<p>');

/*
得到的結(jié)果:
<p >《優(yōu)伴戶外旅行》--讓旅行成為習慣!</p>越發(fā)忙碌的你,是否想給自己放個假?專注工作的你,是否還記得上一次鍛煉是什么時候?優(yōu)伴戶外旅行,給你不一樣的旅行體驗:給心自由,便處處都是風景!</p>
*/
?>

相關(guān)文章

最新評論

阿坝县| 手游| 晴隆县| 阳高县| 鹤岗市| 商洛市| 富源县| 连云港市| 梁河县| 泰安市| 贺兰县| 衡东县| 娱乐| 高平市| 嘉荫县| 莱阳市| 襄樊市| 金坛市| 九江县| 鞍山市| 乌拉特前旗| 哈巴河县| 五台县| 樟树市| 曲周县| 舒城县| 抚宁县| 巫溪县| 双流县| 湖北省| 阜康市| 资溪县| 积石山| 泰顺县| 新蔡县| 二连浩特市| 图木舒克市| 西贡区| 白沙| 长葛市| 仁寿县|