我有这个脚本,它基本上抓住了我的“logs”文件夹中的所有文件并将它们全部合并到一个数组文件中,我唯一的问题是,如果有空行或空行,有时脚本会中断!如何告诉它自动跳过空白行并转到下一行?空白行不一定在顶部或底部!可能在csv文件的中间
<?PHP $csv = array(); $files = glob('../logs/*.*'); $out = fopen("newfile.txt","w"); foreach($files as $file){ $in = fopen($file,"r"); while (($result = fgetcsv($in)) !== false) { $csv[] = $result; } fclose($in); fclose($out); } print json_encode(array('aaData' => $csv )); ?>
正如您在
documentation for
原文链接:https://www.f2er.com/php/133725.htmlfgetcsv()
中所读到的:
A blank line in a CSV file will be returned as an array comprising a single null field,and will not be treated as an error.
在将其添加到数据阵列之前检查它应该就足够了:
while (($result = fgetcsv($in)) !== false) { if (array(null) !== $result) { // ignore blank lines $csv[] = $result; } }