诶 最近总是踩坑实践 ... 然后未完待续 .
今天接到需求 需要抓 https://coinmarketcap.com
下各交易平台数据.
爬虫选型当然是python
, but 身为phper
不用 php 写一下我怎么会死心呢!!!
前两天找 swoole
客户端的轮子 Saber
很人性化, 官方推荐的果然不错.
人性化使用风格, ajax.js/axios.js/requests.py
用户福音, 同时支持PSR风格操作
好吧 我就用它了 !
部分代码展示:
$url = 'https://coinmarketcap.com/zh/exchanges/binance/';
go(function () use ($url) {
[$repsonse] = SaberGM::list(['uri' => $url, 'proxy' => ['http://127.0.0.1:1234']]);
$repsonse->getParsedDomObject()->
getElementById('exchange-markets')->
getElementsByTagName('tbody')->
item(0)->
getElementsByTagName('tr')->
textContent;
});
代码语法风格 是不是很熟悉 .
先说踩得第一个坑
PHP Fatal error: Class 'DOMDocument' not found
写的很明白 我没有 dome 类 百度一下 yum install php-xml
, 试了下 当然不好使了 , 因为我的开发环境是 php7.2
yum search xml
yum install -y php72-php-xml.x86_64
好了 这个坑就填完了
未完待续/...