php html轉text的方法:先建立一個PHP範例檔案;然後透過「function html2text($str){...}」方法將html中的標記替換即可。
本文操作環境:Windows7系統、PHP7.1版,DELL G3電腦
php將HTML轉換為txt文字的函數
利用php的preg_replace函數對html中的標記進行替換。
程式碼如:
function html2text($str){ $str = preg_replace("/<style .*?<\/style>/is", "", $str); $str = preg_replace("/<script .*?<\/script>/is", "", $str); $str = preg_replace("/<br \s*\/?\/>/i", "\n", $str); $str = preg_replace("/<\/?p>/i", "\n\n", $str); $str = preg_replace("/<\/?td>/i", "\n", $str); $str = preg_replace("/<\/?div>/i", "\n", $str); $str = preg_replace("/<\/?blockquote>/i", "\n", $str); $str = preg_replace("/<\/?li>/i", "\n", $str); $str = preg_replace("/\ \;/i", " ", $str); $str = preg_replace("/\ /i", " ", $str); $str = preg_replace("/\&\;/i", "&", $str); $str = preg_replace("/\&/i", "&", $str); $str = preg_replace("/\<\;/i", "<", $str); $str = preg_replace("/\</i", "<", $str); $str = preg_replace("/\&ldquo\;/i", '"', $str); $str = preg_replace("/\&ldquo/i", '"', $str); $str = preg_replace("/\&lsquo\;/i", "'", $str); $str = preg_replace("/\&lsquo/i", "'", $str); $str = preg_replace("/\&rsquo\;/i", "'", $str); $str = preg_replace("/\&rsquo/i", "'", $str); $str = preg_replace("/\>\;/i", ">", $str); $str = preg_replace("/\>/i", ">", $str); $str = preg_replace("/\&rdquo\;/i", '"', $str); $str = preg_replace("/\&rdquo/i", '"', $str); $str = strip_tags($str); $str = html_entity_decode($str, ENT_QUOTES, $encode); $str = preg_replace("/\&\#.*?\;/i", "", $str); return $str; }
推薦學習:《PHP影片教學》
以上是php html怎麼轉text的詳細內容。更多資訊請關注PHP中文網其他相關文章!