PHP CURL数据从表格到CSV

时间:2018-05-19 06:50:15

标签: php curl simple-html-dom

我想收集this page上显示的历史价格数据,并将输出格式化为csv文件。

Double Shot New Farm 4.5 of 5 bubbles 218 reviews
Goodness Gracious Cafe 4.5 of 5 bubbles 150 reviews
New Farm Deli & Cafe 4.5 of 5 bubbles 273 reviews
Coffee Anthology 4.5 of 5 bubbles 116 reviews

问题在于将所有内容整合到一个"字符串"但我需要用逗号或任何适合csv格式的表格分隔表中的每个td值。

输出:

require_once('simple_html_dom.php');

$html = file_get_html("https://coinmarketcap.com/currencies/binance-coin/historical-data/?start=20180101&end=20180519"); // you don't need to use curl
$yourDesiredContent = $html->find('#historical-data .table', 0)->plaintext;

我可以这样做吗?

0 个答案:

没有答案