просто получить название - PullRequest
0 голосов
/ 29 декабря 2011

У меня есть код ниже, который работает правильно, но отсутствует одна вещь.Он не возвращает значение для $item['link'], которое является href заголовка.

include('simple_html_dom.php');
$html = file_get_html('http://news.google.com/news/section?pz=1&cf=all&ned=us&q=newzealand'); 


foreach($html->find('.blended-wrapper') as $article) {
    $item['title']     = $article->find('span.titletext', 0)->plaintext;
    $item['source']    = $article->find('span.esc-lead-article-source', 0)->plaintext;
    $item['clip'] = $article->find('div.esc-lead-snippet-wrapper', 0)->plaintext;

    $item['link'] = $article->find('.esc-lead-article-title a')->href;

    $articles[] = $item;
}

echo "<pre>";
print_r($articles);
echo "<pre/>";

Это то, что он выводит, поскольку вы видите, что ключ ссылки пуст.Я перепробовал так много вещей.Массив

(
    [0] => Array
        (
            [title] => New Zealand dominate 2011 after 24 years of pain
            [source] => Times of India
            [clip] => WELLINGTON: After 24 years of stumbles, disappointments and plain old chokes, New Zealand finally lived up to their billing as world rugby's premier side in 2011.
            [link] => 
        )

    [1] => Array
        (
            [title] => PRESS DIGEST-New Zealand newspapers - Dec 29
            [source] => Reuters
            [clip] => WELLINGTON Dec 29 (Reuters) - Following are some of the lead stories from New Zealand metropolitan newspapers on Thursday. Stories may be taken from either the paper or Internet editions of the papers.
            [link] => 
        )

1 Ответ

1 голос
/ 29 декабря 2011

Вы должны получить первую ссылку, хотя в коллекции только одна:

$item['link'] = $article->find('.esc-lead-article-title a', 0)->href;

Несмотря на то, что simple_html_dom смоделирован после jQuery, его API не отображается точно на jQuery.

...