0

我正在尝试从站点中提取下载链接。但是我只得到数组中的最后一项。

<?php
    require 'functions/simple_html_dom.php';
    $html = new simple_html_dom();
    $html->load_file('http://www.nyaa.eu/?page=torrents&user=64513');
    $page_title = $html->find('title',0);
    ?>

    Title:<?php echo $page_title->plaintext; ?><br><br>
    Links:<br>
    <?php
    foreach($html->find('td.tlistdownload a') as $links){
        $dllinks[] = $links->href;
    }
    foreach($html->find('td.tlistname a') as $names){
        echo '<a href="'; 
        foreach ($dllinks as $value)
        {
            echo $value;
        }
        echo '">' . $names->innertext . '</a><br>';
    }
    foreach ($dllinks as $value)
    {
        echo $value . '<br>';
    } 
?>

当我使用 var_dump 时,它会显示我数组中的所有下载链接。但由于某种奇怪的原因,它只显示了第二个 foreach 循环中的最后一项。


编辑:
对不起它应该是这样的

    <?php
    require 'functions/simple_html_dom.php';
    $html = new simple_html_dom();
    $html->load_file('http://www.nyaa.eu/?page=torrents&user=64513');
    $page_title = $html->find('title',0);
    ?>

    Title:<?php echo $page_title->plaintext; ?><br><br>
    Links:<br>
    <?php
    foreach($html->find('td.tlistdownload a') as $links){
        $dllinks[] = $links->href;
    }
    foreach($html->find('td.tlistname a') as $names){
        echo '<a href="'; 
        foreach ($dllinks as $value)
        {
            echo $value;
        }
        echo '">' . $names->innertext . '</a><br>';
    }
?>
4

1 回答 1

1

我保持这个冗长,以便更容易看到发生了什么......基本上,抓住每一行......从行中找到名称和链接。吐出来。。

<?php
require 'functions/simple_html_dom.php';
$html = new simple_html_dom();
$html->load_file('http://www.nyaa.eu/?page=torrents&user=64513');
$page_title = $html->find('title',0);
?>

Title:<?php echo $page_title->plaintext; ?><br><br>
Links:<br>
<?php
foreach($html->find('.tlistrow') as $row){
    $link_nodes = $row->find('td.tlistdownload a');
    $name_nodes = $row->find('td.tlistname a');
    if (count($link_nodes) > 0 && count($name_nodes) > 0) {
      $link = $link_nodes[0]->href;
      $name = htmlentities($name_nodes[0]->innertext);
      echo "<a href='{$link}'>{$name}</a>\n";
    }
}
于 2013-05-10T17:44:04.593 回答