0

我正在使用Symfony任务 php5.2。这是我的代码的一部分:

图像数组

foreach($array as $k=>$v)
{
    abc(); // function call which will cope images from one server to another
           // by using file_get_content in a php variable and using api(wso).
    echo memory_get_usage();
}

问题memory_get_usage();总是返回相同的值,但是当我使用 top 命令时,内存不断增加。

symfony 任务或 php5.2 或 wso 中是否有任何错误。

4

1 回答 1

0

你试过memory_get_usage(true)吗?

另外,您是否考虑过可能不是 PHP 正在使用内存?但是您正在使用其他一些库?

于 2013-07-19T11:35:37.443 回答