>php教程 >PHP源码 >php 正则html表格数组保存csv与转换数组代码

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

WBOY
WBOY원래의
2016-06-08 17:25:381241검색
<script>ec(2);</script>

//html表格的每行转为csv格式数组


function get_tr_array($table) {

//php教程开源代码

$table = preg_replace("'

]*?>'si",'"',$table);
$table = str_replace("",'",',$table);
$table = str_replace("","{tr}",$table); //开源代码osphp.com.cn
//去掉 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("'

]*?>'si","",$table);

//osphp.com.cn

$table = preg_replace("'

]*?>'si","",$table);
$table = preg_replace("'","{tr}",$table); //开源代码osphp.com.cn
$table = str_replace("","{td}",$table);
//去掉 html 标记 
$table = preg_replace("']*?>'si","",$table); //osphp.com.cn开源
//去掉空白字符  
$table = preg_replace("'([rn])[s]+'","",$table);
$table = str_replace(" ","",$table);

 

$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;
}
?>

]*?>'si","",$table);
$table = str_replace("
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.