$value) { $chunk[] = $value; if (count($chunk) == 500) { yield $chunk; $chunk = []; } } if(count($chunk) > 0){ yield $chunk; } } }