php 正则html表格数组保存csv与转换数组代码
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-05 16:18:34 浏览: 评论:0
- <?php
- //html表格的每行转为csv格式数组
- function get_tr_array($table) {
- //php开源代码
- $table = preg_replace("'<td[^>]*?>'si",'"',$table);
- $table = str_replace("</td>",'",',$table);
- $table = str_replace("</tr>","{tr}",$table); //开源代码phpfensi.com
- //去掉 html 标记
- $table = preg_replace("'<[/!]*?[^<>]*?>'si","",$table);
- //去掉空白字符
- $table = preg_replace("'([rn])[s]+'","",$table);
- $table = str_replace(" ","",$table);
- $table = str_replace(" ","",$table);
- $table = explode(",{tr}",$table);
- array_pop($table);
- return $table;
- }
- ?>
- //将html表格的每行每列转为数组,采集表格数据
- <?
- function get_td_array($table) {
- $table = preg_replace("'<table[^>]*?>'si","",$table);
- //osphp.com.cn
- $table = preg_replace("'<tr[^>]*?>'si","",$table);
- $table = preg_replace("'<td[^>]*?>'si","",$table);
- $table = str_replace("</tr>","{tr}",$table); //开源代码phpfensi.com
- $table = str_replace("</td>","{td}",$table);
- //去掉 html 标记
- $table = preg_replace("'<[/!]*?[^<>]*?>'si","",$table); //phpfensi.com开源
- //去掉空白字符
- $table = preg_replace("'([rn])[s]+'","",$table);
- $table = str_replace(" ","",$table);//phpfensi.com
- $table = str_replace(" ","",$table);
- $table = explode('{tr}', $table);
- array_pop($table); //php开源代码
- foreach ($table as $key=>$tr) {
- $td = explode('{td}', $tr);
- array_pop($td);
- $td_array[] = $td; // }
- return $td_array;
- }
- ?>
Tags: php 正则html 表格数组
相关文章
- ·php正则连接中文本程序(2013-11-12)
- ·php验证用户名是否以字母开头与验证密码(2013-11-13)
- ·PHP常用正则表达式汇总(2013-11-13)
- ·三分钟学会PHP正则表达式(2013-11-13)
- ·巧用PHP正则表达式判断IP地址(2013-11-13)
- ·php 判断中英文字符(2013-11-29)
- ·用PHP来验证Email是否正确(2013-12-10)
- ·php用户注册时常用的一些检验函数总结(2014-01-05)
- ·php正则表达式验证邮箱(2014-01-05)
- ·php/js汉字正则表达式总结(2014-01-05)
- ·php中正则匹配用户密码(2014-01-06)
- ·php中ip地址 email格式 电话号码正则验证(2014-01-06)
- ·php如何对手机号码进行验证(2014-01-07)
- ·php 正则提取文章中的图片,并替换、移动图片目录(2014-01-07)
- ·PHP移除字符串超链接文本的正则表达式(2014-01-10)
- ·实例学习PHP中的正则表达式(2014-01-14)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)