码迷,mamicode.com
首页 > Web开发 > 详细

php simple_html_dom.php 去掉html标签

时间:2018-12-05 16:18:39      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:html   下载   显示   html_   contents   文件   nbsp   去掉   plain   

调用代码如下:

<?php

require ‘simple_html_dom.php‘;
$str = file_get_contents(‘11.html‘);
$dom = str_get_html($str);
//显示界面
echo $dom;
//这里打印出来是文件源码
echo highlight_string($dom);
//去掉标签的html
echo $dom->plaintext;
//打印源码
echo highlight_string($dom->plaintext);?>

simple_html_dom.php文件源码百度下载一份即可

 

php simple_html_dom.php 去掉html标签

标签:html   下载   显示   html_   contents   文件   nbsp   去掉   plain   

原文地址:https://www.cnblogs.com/ayanboke/p/10070704.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!