zoukankan      html  css  js  c++  java
  • php 导出 Excel 报错 exception 'PHPExcel_Calculation_Exception' with message

    exception 'PHPExcel_Calculation_Exception' with message '粉丝数据!C2679 -> Formula Error: Operator '=' has no operands' in D:wwwczydweixinExtendVendorPHPExcelPHPExcelCell.php:300 Stack trace: #0 D:wwwczydweixinExtendVendorPHPExcelPHPExcelWriterExcel5Worksheet.php(460): PHPExcel_Cell->getCalculatedValue() #1 D:wwwczydweixinExtendVendorPHPExcelPHPExcelWriterExcel5.php(187): PHPExcel_Writer_Excel5_Worksheet->close() #2 D:wwwczydweixinPigCmsLibActionUserWechat_groupAction.class.php(294): PHPExcel_Writer_Excel5->save('php://output') #3 [internal function]: Wechat_groupAction->index() #4 D:wwwczydweixinLibCoreApp.class.php(183): ReflectionMethod->invoke(Object(Wechat_groupAction)) #5 D:wwwczydweixinLibCoreApp.class.php(219): App::exec() #6 D:wwwczydweixinLibCoreThink.class.php(39): App::run() #7 D:wwwczydweixinCommon untime.php(243): Think::start() #8 D:wwwczydweixinindex.php(37): require('D:wwwczydweix...') #9 {main}

    关键点:Error: Operator '=' has no operands'

    导致问题原因可能是导出字段中包含有  ‘=’  ,解决办法:在字段前拼上一个半单引号。

     if(strpos($lists[$i-2]['nickname'],'=') === 0){
                    $lists[$i-2]['nickname'] = "'".$lists[$i-2]['nickname'];
                }

  • 相关阅读:
    Markdown 画 UML 图(六)
    Markdown 高级技巧(五)
    Markdown 链接、图片、表格(四)
    16.3Sum Closet
    15.Three Sum
    11.Container With Most Water
    1.Two Sum
    优化学习笔记5
    优化学习笔记4
    优化学习笔记3
  • 原文地址:https://www.cnblogs.com/yzycoder/p/4997080.html
Copyright © 2011-2022 走看看