2013-07-19 58 views
0

我正在使用Symfony任務php5.2。下面是我的代碼的一部分:Symfony任務意外的內存

圖像陣列

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();總是返回相同的值,但是當我使用頂部命令存儲器正在增加不間斷。

在symfony任務或php5.2或wso中是否有任何錯誤。

回答

0

你試過memory_get_usage(true)

另外,你認爲它可能不是PHP使用內存?但是你正在使用的其他一些庫?

+0

仍然d相同的輸出 –

+1

編輯您的問題,並在高負荷時放置頂部的輸出。 –