我已经尝试过更改功能,但它无效。
我正在使用PHPExcel并且我继续收到此错误 "包含文件夹中缺少文件PHPExcel_Shared_String.php。"
它没有显示为fatel错误或类似的东西。它只是在屏幕上打印出来
我使用的是PHPExcel版本1.8.0。
IOFactory.php
/** PHPExcel root directory */
if (!defined('PHPEXCEL_ROOT')) {
/**
* @ignore
*/
define('PHPEXCEL_ROOT', dirname(__FILE__) . '/');
require(PHPEXCEL_ROOT . 'Autoloader.php');
}
mypage.php
include('../../../assets/phpexcel/Classes/PHPExcel/IOFactory.php');
Autoloader.php
class PHPExcel_Autoloader
{
/**
* Register the Autoloader with SPL
*
*/
public static function Register() {
if (function_exists('__autoload')) {
// Register any existing autoloader function with SPL, so we don't get any clashes
spl_autoload_register('__autoload');
}
// Register ourselves with SPL
return spl_autoload_register(array('PHPExcel_Autoloader', 'Load'));
} //function Register();