您好,登錄后才能下訂單哦!
這篇文章給大家介紹利用PHP怎么刪除字符串中無用的標(biāo)簽,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
具體實現(xiàn)方法如下:
很多時候需要輸出一些 “純” 字符串,也就是去除任何雜質(zhì),例如 Html 標(biāo)簽、空格之類的文本,輸出的摘要就是如此,下面的這個函數(shù)可以幫你實現(xiàn)著一點(diǎn).
PHP實例代碼如下:
復(fù)制代碼 代碼如下:
function Bing_string_cleanr( $string ){
$string = trim( $string );
$string = strip_tags( $string );
$string = htmlspecialchars( $string, ENT_QUOTES, 'UTF-8' );
$string = str_replace( "n", "", $string );
$string = trim( $string );
return $string;
}
使用方法如下:
復(fù)制代碼 代碼如下:
echo Bing_string_cleanr( '內(nèi) 容 <br> <html> asdfeiuonsdfje' );
php刪除空白,代碼如下:
復(fù)制代碼 代碼如下:
<?php
$str = " This line containstliberal rn use of whitespace.nn";
// First remove the leading/trailing whitespace
//去掉開始和結(jié)束的空白
$str = trim($str);
// Now remove any doubled-up whitespace
//去掉跟隨別的擠在一塊的空白
$str = preg_replace('/s(?=s)/', '', $str);
// Finally, replace any non-space whitespace, with a space
//最后,去掉非space 的空白,用一個空格代替
$str = preg_replace('/[nrt]/', ' ', $str);
// Echo out: 'This line contains liberal use of whitespace.'
echo "<pre>{$str}</pre>";
?>
關(guān)于利用PHP怎么刪除字符串中無用的標(biāo)簽就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。