php:数据导出excel报错 - Go语言中文社区

php:数据导出excel报错


php:数据导出excel报错

1 数据导出excel报错 
这里写图片描述
2 解决方法 
这里写图片描述
(1)把/framework/library/phpexcel/PHPExcel/Shared/File.php中的方法sys_get-temp_dir()替换为以下代码。 
public static function sys_get_temp_dir()

{

// use upload-directory when defined to make it running on

// environments having very restricted open_basedir configs

if (ini_get(‘upload_tmp_dir’)!==false) {

if($temp = ini_get(‘upload_tmp_dir’)) {

if (file_exists(temp)) { return realpath(temp)) { return realpath(temp); }

}

}

// sys_get_temp_dir is only available since PHP 5.2.1

// http://php.net/manual/en/function.sys-get-temp-dir.php#94119

if ( !function_exists(‘sys_get_temp_dir’)) {

if ($temp = getenv(‘TMP’) ) {

if (file_exists($temp)) {

return realpath($temp);

www.acgred.cn }

if ((temp!='') && file_exists(temp!='') && file_exists(temp)) {

return realpath($temp);www.shenghuodemeili.com

www.gaimor.cn

}

}

if ($temp = getenv(‘TEMP’) ) {

if (file_exists($temp)) {

return realpath($temp);

}

}

}


(2)替换header信息 
这里写图片描述

版权声明:本文来源CSDN,感谢博主原创文章,遵循 CC 4.0 by-sa 版权协议,转载请附上原文出处链接和本声明。
原文链接:https://blog.csdn.net/qq_42345394/article/details/80818968
站方申明:本站部分内容来自社区用户分享,若涉及侵权,请联系站方删除。
  • 发表于 2021-05-17 23:09:15
  • 阅读 ( 794 )
  • 分类:

0 条评论

请先 登录 后评论

官方社群

GO教程

猜你喜欢