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

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

WBOY
リリース: 2016-06-08 17:25:38
オリジナル
1241 人が閲覧しました
<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("
関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のおすすめ
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート