How to get a div via PHP?

前端 未结 3 1953
没有蜡笔的小新
没有蜡笔的小新 2021-02-06 17:14

I get a page using file_get_contents from a remote server, but I want to filter that page and get a DIV from it that has class \"text\" using PHP. I started with

3条回答
  •  青春惊慌失措
    2021-02-06 18:04

    Personally, I like Simple HTML Dom Parser.

    include "lib.simple_html_dom.php"
    
    $html = file_get_html('http://scrapeyoursite.com');
    $html->find('div.text')->plaintext;
    

    Pretty simple, huh? It accommodates selectors like jQuery :)

提交回复
热议问题