PHP でダウンロード用のテキスト ファイルを作成していますが、常に末尾に数字の 1 がたくさんあります。たとえば、1111111111111111111111 です。出力自体は問題ありません。最後にこの無関係ながらくたがあるだけです。手がかりはありますか?
function exportMyOrders() {
$output = $this->getMyOutput();
// Push the report.
$today = getdate();
$today_str = $today['year'].'-'.$today['mon'].'-'.$today['mday'];
$export_file = 'MyFileName_'.$today_str.'.txt';
header("Content-Description: File Transfer");
header("Content-Disposition: attachment; filename=" . urlencode($export_file));
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");
header("Pragma: no-cache");
header("Expires: 0");
// flush();
print $output;
die();
}