Nó sẽ giúp bạn xem lại nhật ký lỗi của mình hoặc ít nhất là cài đặt
ini_set('error_reporting', E_ALL);
ini_set('display_errors', 1);
vì điều đó sẽ cho bạn biết rằng base64_encode mong đợi một chuỗi nhưng $ output là một tài nguyên.
Thử cài đặt
ob_start();
đến đầu và
$output = ob_get_flush();
giữa các dòng được mã hóa fclose &$ của bạn.
chưa thử thư nhưng điều này sẽ giúp bạn ít nhất một chút :)
Tôi đã thử mã này và mọi thứ hoạt động tốt:
<?php
ob_start();
header('Content-Type: text/csv; charset=utf-8');
header('Content-Disposition: attachment; filename=surveys.csv');
$output = fopen('php://output', 'w');
fputcsv($output, array('Name', 'Branch', 'Website','Company', 'Question1', 'Question2', 'Question3', 'Question4', 'Question5'));
$data = array();
$data[] = array('Name', 'Branch', 'Website','Company', 'Question1', 'Question2', 'Question3', 'Question4', 'Question5');
foreach( $data as $row )
{
fputcsv($output, $row, ',', '"');
}
fclose($output);
$output = ob_get_flush();
$encoded = chunk_split(base64_encode($output));