php xpath: query within a query result

前端 未结 2 1704
终归单人心
终归单人心 2021-02-10 11:20

I\'m trying to parse an html file.

The idea is to fetch the span\'s with title and desc classes and to fetch their information in each div that

2条回答
  •  清歌不尽
    2021-02-10 11:55

    Make the queries relative... start them with a dot (e.g. ".//…").

    foreach ($arts as $art) {
        // Note: single slash (direct child)
        $titles = $xpath->query("./span[@class='title']", $art);
        if ($titles->length > 0) {
            $title = $titles->item(0)->nodeValue;
            echo $title;
        }
    
        $descs = $xpath->query("./span[@class='desc']", $art);
        if ($descs->length > 0) {
            $desc = $descs->item(0)->nodeValue;
            echo $desc;
        }
    }
    

提交回复
热议问题