HTMLテーブルの各行をCSV形式の配列に変換します
- //HTMLテーブルの各行をCSV形式の配列に変換します
-
- function get_tr_array($table) {
- //PHPオープンソースコード
- $table = preg_replace("'
] *?>'si",'"',$table);
- $table = str_replace("
| ",'",',$table); - $table = str_replace("< ;/tr> ;","{tr}",$table); //オープンソースコード OSPhP.COm.CN
- //HTML タグを削除
- $table = preg_replace("'<[/!]*?[^ <> ]*?>'si","",$table);
- //空白文字を削除
- $table = preg_replace("'([rn])[s]+'","",$ table);
- //オープンソースコード OSPhP.COm.CN
- $table = str_replace(" ","",$table);
- $table = str_replace(" ","",$table); explode(",{ tr}",$table);
- //ソースコードを開く OSPHP.COM.Cn
- array_pop($table)
- return $table
- ?>
-
-
コードをコピーします
|