美文网首页
PHPExcel Fatal error: Uncaught E

PHPExcel Fatal error: Uncaught E

作者: coffeys | 来源:发表于2019-09-25 21:15 被阅读0次

    PHPExcel在Linux平台下运行报错:Fatal error: Uncaught Error: Class 'PHPExcel_Shared_String' not found in...

    解决方法:

    require_once 'PHPExcel/IOFactory.php'; #在引用 Autoloader.php 之前引用 IOFactory.php
    require_once 'PHPExcel/Autoloader.php';
    ...............................
    $excel = new PHPExcel();
    ...................
    

    相关文章

      网友评论

          本文标题:PHPExcel Fatal error: Uncaught E

          本文链接:https://www.haomeiwen.com/subject/rdbwuctx.html