Google API使用php附加CSV文件

时间:2015-07-22 12:29:05

标签: php csv google-api google-adwords

尝试每隔30分钟附加一个包含Google AdWords API新数据的CSV文件。即,不断将新数据行添加到现有CSV文件中。

  $filePath = dirname(__FILE__) . '/report.csv';

  // Run the example.
  DownloadCriteriaReportExample($user, $filePath);

这是php文件中的当前代码,它将报告保存为新的CSV文件,有没有办法让它作为新的数据行保存到指定的文件中?

1 个答案:

答案 0 :(得分:2)

如果您想要简单的“附加”,您可以简单地执行此操作

$variable = xxx; // whatever data you fetched
$file = fopen("example.txt", "a");
fwrite($file, $variable);
fclose($file);