我正在尝试抓取每个 .row 的 href。最终,我也想点击链接并访问它链接的 DOM,但我无法获得 Link 对象或 href 属性。
不确定 a 属性中没有任何文本这一事实是否是一个问题,但这就是我必须使用的 DOM。
帮助?
<?php require 'vendor/autoload.php';
use Symfony\Component\DomCrawler\Crawler;
$html = <<<'HTML'
<!doctype html>
<html>
<body>
<div class="content">
<p class="row"><a href="/uri1"></a></p>
<p class="row"><a href="/uri2"></a></p>
<p class="row"><a href="/uri3"></a></p>
</div>
</body>
<html>
HTML;
$dom = new Crawler($html);
$content = $dom->filter('.row');
$rows = [];
foreach ($content as $element)
{
$node = new Crawler($element);
$link = $node->filter('a');
echo $link->html(); // Empty?
try
{
$link = $node->selectLink('')->link();
echo $link->getUri();
}
catch (Exception $ex)
{
// Throws: Current URI must be an absolute URL ("").Current URI must be
// an absolute URL ("").Current URI must be an absolute URL ("").
echo $ex->getMessage();
}
}