PHP数组到CSV
我试图将一个产品数组转换成一个CSV文件,但似乎没有计划。 CSV文件是一个很长的行,这是我的代码:
for($i=0;$i<count($prods);$i++) { $sql = "SELECT * FROM products WHERE id = '".$prods[$i]."'"; $result = $mysqli->query($sql); $info = $result->fetch_array(); } $header = ''; for($i=0;$i<count($info);$i++) { $row = $info[$i]; $line = ''; for($b=0;$b<count($row);$b++) { $value = $row[$b]; if ( ( !isset( $value ) ) || ( $value == "" ) ) { $value = "\t"; } else { $value = str_replace( '"' , '""' , $value ); $value = '"' . $value . '"' . "\t"; } $line .= $value; } $data .= trim( $line ) . "\n"; } $data = str_replace( "\r" , "" , $data ); if ( $data == "" ) { $data = "\n(0) Records Found!\n"; } header("Content-type: application/octet-stream"); header("Content-Disposition: attachment; filename=your_desired_name.xls"); header("Pragma: no-cache"); header("Expires: 0"); array_to_CSV($data); function array_to_CSV($data) { $outstream = fopen("php://output", 'r+'); fputcsv($outstream, $data, ',', '"'); rewind($outstream); $csv = fgets($outstream); fclose($outstream); return $csv; }
此外,标题不会强制下载。 我已经复制并粘贴输出并保存为.csv
编辑
问题解决:
如果其他人正在寻找同样的东西,find一个更好的方法来做到这一点:
$num = 0; $sql = "SELECT id, name, description FROM products"; if($result = $mysqli->query($sql)) { while($p = $result->fetch_array()) { $prod[$num]['id'] = $p['id']; $prod[$num]['name'] = $p['name']; $prod[$num]['description'] = $p['description']; $num++; } } $output = fopen("php://output",'w') or die("Can't open php://output"); header("Content-Type:application/csv"); header("Content-Disposition:attachment;filename=pressurecsv.csv"); fputcsv($output, array('id','name','description')); foreach($prod as $product) { fputcsv($output, $product); } fclose($output) or die("Can't close php://output");
考虑使用fputcsv()
来代替写出值。
这可能会立即解决您的问题。
尝试使用;
PHP_EOL
终止CSV输出中的每一行。
我假设文本正在分隔,但不移动到下一行?
这是一个PHP常数。 这将决定你需要的行的正确结束。
例如,Windows使用“\ r \ n”。 当我的输出没有打破新的界限的时候,我用那个我绞尽脑汁。
如何在PHP中编写统一的新行?
在我的情况下,我的数组是多维的,可能以数组作为值。 所以我创build了这个recursion函数来彻底拆开数组:
function array2csv($array, &$title, &$data) { foreach($array as $key => $value) { if(is_array($value)) { $title .= $key . ","; $data .= "" . ","; array2csv($value, $title, $data); } else { $title .= $key . ","; $data .= '"' . $value . '",'; } } }
由于我的数组的各个层面不适合平面CSV格式,因此我创build了一个空白列,其中包含子数组的关键字,作为下一级数据的描述性“入门”。 示例输出:
agentid fname lname empid totals sales leads dish dishnet top200_plus top120 latino base_packages G-adriana ADRIANA EUGENIA PALOMO PAIZ 886 0 19 0 0 0 0 0
你可以很容易地删除“intro”(描述性)列,但在我的情况下,我已经在每个子数组中重复列标题,即inbound_leads,所以给了我一个在下一节之前的中断/标题。 去掉:
$title .= $key . ","; $data .= "" . ",";
在is_array()后面进一步压缩代码并删除多余的列。
既然我想要一个标题行和数据行,我将两个variables传入函数,并在函数调用完成后,用PHP_EOL终止这两个variables:
$title .= PHP_EOL; $data .= PHP_EOL;
是的,我知道我留下一个额外的逗号,但为了简洁起见,我没有在这里处理。
我知道这是旧的,我有一个情况,我需要数组的密钥也包含在CSV中,所以我更新了由Jesse Q的脚本来做到这一点。 我用一个string作为输出,因为内爆不能添加新行(新行是我添加的东西,应该真的在那里)。
请注意,这只适用于单值数组(key, value)
。 但可以很容易地更新以处理多维(key, array())
。
function arrayToCsv( array &$fields, $delimiter = ',', $enclosure = '"', $encloseAll = false, $nullToMysqlNull = false ) { $delimiter_esc = preg_quote($delimiter, '/'); $enclosure_esc = preg_quote($enclosure, '/'); $output = ''; foreach ( $fields as $key => $field ) { if ($field === null && $nullToMysqlNull) { $output = ''; continue; } // Enclose fields containing $delimiter, $enclosure or whitespace if ( $encloseAll || preg_match( "/(?:${delimiter_esc}|${enclosure_esc}|\s)/", $field ) ) { $output .= $key; $output .= $delimiter; $output .= $enclosure . str_replace($enclosure, $enclosure . $enclosure, $field) . $enclosure; $output .= PHP_EOL; } else { $output .= $key; $output .= $delimiter; $output .= $field; $output .= PHP_EOL; } } return $output ; }
我正在使用此函数将php数组转换为csv。 它也适用于multidimensional array
public function array_2_csv($array) { $csv = array(); foreach ($array as $item=>$val) { if (is_array($val)) { $csv[] = $this->array_2_csv($val); $csv[] = "\n"; } else { $csv[] = $val; } } return implode(';', $csv); }