将帖子更改为来自 DOM 的 PHP 查询!
我正在尝试从网站中提取一些信息以将其放入表格中,然后用 PHP 打印出来。
我正在使用 DOM 解析器,因为它看起来正是我所需要的。
<?php
include 'phpQuery.php';
$file = "http://evolve.sg-community.de/index.php?page=plugins";
phpQuery::newDocumentFileHTML($file);
$rowData = array();
pq("table tr td")->each(function($i) {
$rowData[] = pq($i)->html();
});
echo "<pre>";
print_r($rowData);
echo "</pre>";
?>
我不断得到:
解析错误:语法错误,意外的 T_FUNCTION,在第 12 行的内容中需要 ')'
pq("table tr td")->each(function($i) {