溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

PHP怎么去掉從word粘貼過(guò)來(lái)的沒(méi)有用格式的函數(shù)

發(fā)布時(shí)間:2021-09-04 12:46:46 來(lái)源:億速云 閱讀:97 作者:chen 欄目:開發(fā)技術(shù)

本篇內(nèi)容介紹了“PHP怎么去掉從word粘貼過(guò)來(lái)的沒(méi)有用格式的函數(shù)”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

一般處理的方式有二種:1.通過(guò)編輯器的JS直接去除。2.提交到后臺(tái)后,直接用程序去掉無(wú)效標(biāo)簽。下面我就分享一個(gè)通過(guò)PHP的處理方式,成功率可能不是100%。這程序也是在PHP官網(wǎng)上看到的,就順便粘貼過(guò)來(lái)了。

復(fù)制代碼 代碼如下:


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


測(cè)試使用結(jié)果:

復(fù)制代碼 代碼如下:


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

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

“PHP怎么去掉從word粘貼過(guò)來(lái)的沒(méi)有用格式的函數(shù)”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI