一、第一种 $objWriter = \PHPexcel_ioFactory::createWriter($excel, 'Excel2007'); 把上边的Excel2007改成Excel5 $ob
$objWriter = \PHPexcel_ioFactory::createWriter($excel, 'Excel2007');
把上边的Excel2007改成Excel5
$objWriter = \phpExcel_IOFactory::createWriter($excel, 'Excel5');
找到这个方法
\phpexcel\PHPExcel\Calculation\Functions.php
去掉575行的break,如下所示,return 64;下边的break。
public static function TYPE($value = NULL) {$value= self::flattenArrayIndexed($value);if (is_array($value) && (count($value) > 1)) {$a = array_keys($value);$a = array_pop($a);//Range of cells is an errorif (self::isCellValue($a)) {return 16;} elseif (self::isMatrixValue($a)) {return 64;}} elseif(empty($value)) {//Empty Cellreturn 1;}$value= self::flattenSingleValue($value);if (($value === NULL) || (is_float($value)) || (is_int($value))) {return 1;} elseif(is_bool($value)) {return 4;} elseif(is_array($value)) {return 64;//break;} elseif(is_string($value)) {//Errorsif ((strlen($value) > 0) && ($value{0} == '#')) {return 16;}return 2;}return 0;}
以上基本就能解决,这种情况多发生于项目运行环境发生变更
来源地址:https://blog.csdn.net/qq_38921838/article/details/128453361
--结束END--
本文标题: php 导出excel 提示“网页可能暂时无法连接,或者它已永久性地移动到了新网址“问题
本文链接: https://lsjlt.com/news/402791.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0