这就是我使用mysql获取CSV导出的方式。如果您有更好的代码,那么建议我
while( $row = mysql_fetch_row( $export ) ) {
$line = '';
foreach( $row as $value ) {
if ( ( !isset( $value ) ) || ( $value == "" ) ){
$value = ",";
}
else {
$value = str_replace( '"' , '""' , $value );
$value = '"' . $value . '"' . ",";
}
$line .= $value;
}
$data .= trim( $line ) . "\n";
}
$data = str_replace( "\r" , "" , $data );
$date = date ("Y-m-d", strtotime("+1 day", strtotime($date)));
}
header("Content-type: application/vnd.ms-excel");
header("Content-disposition: csv" . date("Y-m-d") . ".csv");
header( "Content-disposition: filename=".$file_name.".csv");
print "$header\n$data";
exit;
?>
请给我解决方案
最佳答案
PHP具有fputcsv函数,可以将其用于以下目的:
http://php.net/manual/en/function.fputcsv.php
关于php - 我在mysql数据库中有一些记录。我想使用php以csv文件格式导出每日记录?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28086263/