ajbdev/scraper
Composer 安装命令:
composer require ajbdev/scraper
包简介
Scrape websites and extract specific information in various format (HTML, JSON, etc) from different sources
README 文档
README
Quickly and easily scrape data from external sources with simple query strings.
use Scraper\Scraper; use Scraper\Source\Source; $scraper = new Scraper(); $source = Source::create('https://news.ycombinator.com'); $source->setFakeIdentity(true); $result = $scraper->scrape($source, 'td.title a'); foreach ($result as $node) { echo $node->nodeValue . PHP_EOL; } // IBM to cut 111,800 people from its workforce // Chess: Who will win in this riveting game of Math.random() vs. Math.random()? // First U.S. Bitcoin Exchange Set to Open // ...
统计信息
- 总下载量: 28
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-01-26