当前位置:首页 > PHP教程 > 正则表达式 > 列表

php 正则html表格数组保存csv与转换数组代码

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-05 16:18:34 浏览: 评论:0 
  1. <?php
  2. //html表格的每行转为csv格式数组 
  3. function get_tr_array($table) { 
  4.  
  5. //php开源代码 
  6.  
  7. $table = preg_replace("'<td[^>]*?>'si",'"',$table);  
  8. $table = str_replace("</td>",'",',$table);  
  9. $table = str_replace("</tr>","{tr}",$table); //开源代码phpfensi.com  
  10. //去掉 html 标记   
  11. $table = preg_replace("'<[/!]*?[^<>]*?>'si","",$table);  
  12. //去掉空白字符    
  13. $table = preg_replace("'([rn])[s]+'","",$table); 
  14.  
  15.  
  16. $table = str_replace(" ","",$table);  
  17. $table = str_replace(" ","",$table);  
  18. $table = explode(",{tr}",$table); 
  19.  
  20. array_pop($table);  
  21.         return $table;  
  22. }  
  23. ?> 
  24.  
  25. //将html表格的每行每列转为数组,采集表格数据 
  26.  
  27. <?  
  28. function get_td_array($table) {  
  29. $table = preg_replace("'<table[^>]*?>'si","",$table); 
  30.  
  31. //osphp.com.cn 
  32.  
  33. $table = preg_replace("'<tr[^>]*?>'si","",$table);  
  34. $table = preg_replace("'<td[^>]*?>'si","",$table);  
  35. $table = str_replace("</tr>","{tr}",$table); //开源代码phpfensi.com  
  36. $table = str_replace("</td>","{td}",$table);  
  37. //去掉 html 标记   
  38. $table = preg_replace("'<[/!]*?[^<>]*?>'si","",$table); //phpfensi.com开源  
  39. //去掉空白字符    
  40. $table = preg_replace("'([rn])[s]+'","",$table);  
  41. $table = str_replace(" ","",$table);//phpfensi.com 
  42. $table = str_replace(" ","",$table);  
  43. $table = explode('{tr}'$table);  
  44. array_pop($table); //php开源代码  
  45.         foreach ($table as $key=>$tr) {  
  46. $td = explode('{td}'$tr);  
  47. array_pop($td);  
  48. $td_array[] = $td//        }  
  49.         return $td_array;  
  50. }  
  51. ?> 

Tags: php 正则html 表格数组

分享到: