我正在使用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中是否有任何错误。
答案 0 :(得分:0)
您是否尝试过memory_get_usage(true)
?
另外,您是否认为可能不是PHP正在使用内存?但是你正在使用的其他一些图书馆?