$path_to_file = "https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_daily_reports/".date_format($date,"m-d-Y").".csv";
$csvData = file_get_contents($path_to_file);
$lines = explode(PHP_EOL, $csvData);
$array = array();
foreach ($lines as $line) {
$array[] = str_getcsv($line);
}..
这是我用于从Github CSV检索COVID-19数据的代码。该数组稍后在表中处理,因此我可以显示特定区域的数据。在localhost上的Xampp上,一切正常,但是当我上线时,它不起作用。我检查了php.ini文件和allow_url_fopen = On
。为什么会这样呢?我想这是服务器配置错误。