首頁 > 後端開發 > php教程 > PHPExcel文件导出出现找不到该文件,高手

PHPExcel文件导出出现找不到该文件,高手

WBOY
發布: 2016-06-13 10:21:18
原創
1265 人瀏覽過

PHPExcel文件导出出现找不到该文件,求救高手!
环境:freeBSD服务器,PHP+MySQL
问题:做了一个excel导出功能,在windows本地与Linux测试环境都没有问题,在线上freeBSD出现找不到该文件。

PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->        $file_name = isset($_GET['exam_caption']) && !empty($_GET['exam_caption']) ?   $_GET['exam_caption'] : time().mt_rand(1000, 9999);        $outputFileName = iconv ( 'UTF-8', 'gb2312', $file_name . '.xlsx' );        header ( 'Pragma:public' );        header ( 'Expires:0' );        header ( 'Cache-Control:must-revalidate,post-check=0,pre-check=0' );        header ( 'Content-Type:application/force-download' );        header ( 'Content-Type:application/vnd.ms-excel' );        header ( 'Content-Type:application/octet-stream' );        header ( 'Content-Type:application/download' );        header ( 'Content-Disposition:attachment;filename=' . $outputFileName );        header ( 'Content-Transfer-Encoding:binary' );        $objWriter->save ( 'php://output' );
登入後複製


求教高手!!!!

------解决方案--------------------
你把路劲打印出来看看呗!若相对路径不行就换绝对路径啊!
------解决方案--------------------
没有log,怎么调呀
相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板