gpt4 book ai didi

php - 不能重新声明类 Zend_Loader_Autoloader

转载 作者:可可西里 更新时间:2023-11-01 00:37:59 26 4
gpt4 key购买 nike

我正在使用 Zend Debugger 调试基于 Zend Framework 构建的 php 应用程序。目前我运行的是 1.10.6 版本。调试我的应用程序时出现此错误:

Compile Error: /var/www/Zend/ZendFramework-1.10.6/library/Zend/Loader/Autoloader.php line 36 - Cannot redeclare class Zend_Loader_Autoloader

这只是 Zend Framework 中的错误,还是与我的 application.php 中的错误配置有关?

$paths = array(

realpath(dirname(__FILE__).'/../library'),
'.',
);
*/


defined('APPLICATION_PATH')
or define('APPLICATION_PATH', realpath(dirname(__FILE__).'/../application'));
defined('APPLICATION_ENV')
or define('APPLICATION_ENV', 'development');

set_include_path(implode(PATH_SEPARATOR, array(
realpath(APPLICATION_PATH.'/../library'),
)));


//require_once('Zend/Loader/Autoloader.php');
require_once('Zend/Application.php');

$application = new Zend_Application(
APPLICATION_ENV,
APPLICATION_PATH.'/configs/events.ini'
);

$application->bootstrap()->run();

最佳答案

如果您使用的是 zend 服务器,请关闭 zend 优化器

关于php - 不能重新声明类 Zend_Loader_Autoloader,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3365006/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com