正则表达式 - 求php正则匹配table标签
巴扎黑
巴扎黑 2017-04-10 17:14:38
[PHP讨论组]

table里面所有的内容都不要过滤掉,包括标签和内容。

<table id="Table1" class="blacktab" bordercolor="Black" border="0" width="100%">

//内容

</table>
巴扎黑
巴扎黑

全部回复(3)
高洛峰
preg_match("/<table[^>]*?>(.*?)<\/table>/s",$html,$match);

print_r($match[1]);
怪我咯
<?php
$s = file_get_contents('./table.html');
preg_match('/<table[^>]*>(.*)<\/table>/is', $s, $arMatch);
var_export($arMatch);
?>
巴扎黑
preg_match('/<table.*?>(.*?)<\/table>/s',$str,$match);
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号