程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP輸出CSV文件出現亂碼問題

PHP輸出CSV文件出現亂碼問題

編輯:關於PHP編程

問題:PHP輸入用戶列表為csv文件,用excel打開顯示為亂碼,用記事本或ue打開正常.查看文件編碼顯示為utf-8

解決:
function down_file($filepath,$filename)
{
if(!file_exists($filepath))
{ www.2cto.com
echo "backup error ,download file no exist";
exit();
}
ob_end_clean();
header('Content-Type: application/download');
header("Content-type: text/csv");
header('Content-Disposition: attachment;filename="'.$filename.'"');
header("Content-Encoding: binary");
  header("Content-Length:".filesize($filepath));
header("Pragma: no-cache");
header("Expires: 0");
readfile($filepath);
$e=ob_get_contents();
ob_end_clean();
}

$fname='usersdata.csv';
$handle=fopen($fname,'wb');
$strUsersData =iconv('utf-8','gb2312',$strUsersData);//轉換編碼
if(fwrite($handle,$strUsersData)==false){}
fclose($handle);
down_file($fname,'555.csv');

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved