/si", "", $table); $table = preg_replace("/ ]>/si", "", $table); $table = preg_replace("/ ]>/si", "", $table); // 去除HTML标记和空白字符 $table = preg_replace("/ /si" />

php将HTML表格每行每列转为数组实现采集表格数据

网络编程 2025-03-24 04:45www.168986.cn编程入门

```php

function get_td_array($table) {

$table = preg_replace("/]>/si", "", $table);

$table = preg_replace("/]>/si", "", $table);

$table = preg_replace("/]>/si", "", $table);

// 去除HTML标记和空白字符

$table = preg_replace("/<\/td>/si", "{td}", $table); // 使用{td}替换单元格结束标签

$table = preg_replace("/<\/tr>/si", "{tr}", $table); // 使用{tr}替换行结束标签

$table = preg_replace("/[\s]+/", "", $table); // 去除空白字符

$table = str_replace(" ", "", $table); // 再次去除空白字符以确保结果无误

array_pop($table); // 删除最后一个空元素(如果存在)

// 创建包含所有数据的二维数组

$td_array = array(); // 用于存储最终结果的数组

foreach ($table as $key => $tr) { // 遍历每一行

$td = explode('{td}', $tr); // 使用{td}作为分隔符按列分割每一行

array_pop($td); // 删除最后一个空元素(如果存在)并保留其他列数据到当前行的数组中

$td_array[$key][] = $td; // 将当前行的数据添加到最终结果数组中

}

return $td_array; // 返回包含所有数据的二维数组

}

```

Copyright © 2016-2025 www.168986.cn 狼蚁网络 版权所有 Power by