0

我有自定义库

class Test extends CI_Controller {
    public function __construct(){
        parent::__construct();
    }

    public function abc(){
        //some code
    }
}

当我将此库添加到自动加载时,出现以下错误

致命错误:第 495 行 C:\xampp\htdocs...\system\core\Loader.php 中允许的内存大小为 134217728 字节已用尽(试图分配 261904 字节)

4

2 回答 2

1

您扩展 CI_Controller

在您的图书馆中,您不会扩展任何东西。除非您想编辑或更改其他库(助手等)

http://ellislab.com/codeigniter/user-guide/general/creating_libraries.html

于 2013-03-19T08:51:27.560 回答
0

要么你在那个库中有一个循环,要么只是一个分配大量内存的操作,比如将大量数据插入到数组中。如果您无法优化库中的操作,您可能需要在 php 中增加允许的内存大小

ini_set('memory_limit', '512M');

于 2013-03-19T08:51:45.690 回答