>백엔드 개발 >PHP 튜토리얼 >phpexcel的自动加载与其他框架有冲突

phpexcel的自动加载与其他框架有冲突

WBOY
WBOY원래의
2016-06-23 13:24:36983검색

一直想用PHPEXCEL,这次这个项目遇到了。然而坑也出来了。phpexcel的Autoloader.php里面

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'));    }

与以现有框架的自动加载有冲突了。为了解决这个问题,只可以改其中一个,我选择了phpexcel,因为框架的其他项目都用本身的自动加载,不能为了一个功能改动框架本身。

从网上找到了方法,就是删到原来的,用这个新的就可以解决了。

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'));*/    $functions = spl_autoload_functions();    foreach ( $functions as  $function)        spl_autoload_unregister($function);    $functions = array_merge(array(array('PHPExcel_Autoloader','Load')),$functions);    foreach ( $functions as $function)        $x = spl_autoload_register($function);    return $x;}


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.