如何使用php爬取表单数据
这个网站显示不同国家的外汇汇率,我想抓取所有可以通过选择不同日期显示的存储数据,请帮助我如何编写curl或fpot爬虫,
www.forex.pk/open_market_rates.asp
谢谢
This website showing forex rates of different countries, and i want to crawl all of the stored data which can be shown by selecting different dates, Please help me how can i write curl or fpot crawler,
www.forex.pk/open_market_rates.asp
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用curl抓取页面,然后使用简单的HTML解析器解析内容。
这是一个http://simplehtmldom.sourceforge.net/
就这么简单。
You can crawl the page with curl and then parse the content with a simple HTML parser.
here is one http://simplehtmldom.sourceforge.net/
simple as that.