VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php 正则html表格数组保存csv与转换数组代码

  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. ?> 

出处:http://www.phpfensi.com/php/20140805/4214.html


相关教程