I'm using a foreach loop to process a large set of items, unfortunately it's using alot of memory. (probably because It's doing a copy of the array).
Apparently there is a way to save some memory with the following code: $items = &$array;
Bu for
yerine döngüler kullanmak daha iyi değil midir?
Ve kısa sürede bir foreach döngüsü içinde işlenmiş gibi her öğeyi yok etmek için bir yol var.
örn.
$items = &$array;
foreach($items as $item)
{
dosomethingwithmy($item);
destroy($item);
}
Ben sadece ressources tükeniyor olmadan öğeleri bir sürü işlemek için en iyi yol arıyorum.