在Yii里面使用PHPExcel
首先修改PHPEXCEL /Autoloader.php的文件
public static function Load($pObjectName){
if ((class_exists($pObjectName)) || (strpos($pObjectName, ‘PHPExcel’) === False)) {
return false;
}
// this is the code that shows what I am saying[……]