在php的html表中填充空白单元格

时间:2018-07-25 20:12:02

标签: php html html-table

我有一个从Web解析的html表,其中包含一些数据,但有时会出现空白单元格。如何轻松将其替换为例如NULL?

以防万一,这是我的代码:

<?php
include("simple_html_dom.php");
$html=file_get_html("url");
$string = $html;
preg_match_all('#\bhttps?://[^,\s()<>]+(?:\([\w\d]+\)|([^,[:punct:]\s]|/))#', $string, $matches);
$html=file_get_html($matches[0][1]);
$article=$html->find("article",0);

foreach($article->find('article-title') as $title)
     echo $title->outertext;
foreach($article->find('table') as $table) {
     echo $table->outertext;
} ?>

0 个答案:

没有答案