windows正常,linux报错:'PHPExcel_Reader_excel2007' not found

PHPExcel在windows下执行正常,但是linux下报错如下:

Fatal error: Class 'PHPExcel_Reader_excel2007' not found in /phpoffice/phpexcel/Classes/PHPExcel/IOFactory.php on line 170
A PHP Error was encountered

Severity: Error

Message: Class 'PHPExcel_Reader_excel2007' not found

Filename: PHPExcel/IOFactory.php

Line Number: 170

Backtrace:

简而言之,类没有找到

因为在linux下,大小写敏感,调用的时候用excel2007找不到类,修改为: Excel2007 即可


具体出处:在IOFactory.php 66行定义支持的类:

    private static $_autoResolveClasses = array(
        'Excel2007',
        'Excel5',
        'Excel2003XML',
        'OOCalc',
        'SYLK',
        'Gnumeric',
        'HTML',
        'CSV',
    );

你可能感兴趣的:(windows正常,linux报错:'PHPExcel_Reader_excel2007' not found)