PHP TeeChart 内存消耗

PHP TeeChart memory consumption

我一直在测试在 teechart 中为 PHP 创建图表,使用 while 循环通过一个函数创建多个图表:

while () {
    create_my_chart();
}

经过 14 次迭代后,我收到以下错误:

"Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 800 bytes) in tchart\sources\GraphicsGD.php on line 602"

这意味着 teeChart 没有正确释放内存,但我想知道我是否可以对此做些什么?

您允许的内存使用量似乎只有 64MB。这个很小! 在 php.ini 中更改它或在脚本中执行 ini_set('memory_limit','1G') 以允许 1 GB 内存。并再次测试。

http://php.net/manual/en/ini.core.php#ini.memory-limit