Ya se que soy un poco pesado y que no paro de hacer preguntas. Pero de las dudas vive un foro, y cuantas más dudas haya, y más respuestas a dichas dudas, más útil se vuelve, así que alla voy.
Tengo 4 arrays por separado:
$xmlAggregations
$xmlProjections
$flatAggregations
$flatProjections
quería guardar en un array llamado @reports, el contenido de todos los arrays anteriores. Para ello hice lo siguiente:
Using perl Syntax Highlighting
foreach $value (@{$xmlAggregations})
{
@reports = $value;
}
foreach $value (@{$flatAggregations})
{
@reports = $value;
}
foreach $value (@{$xmlProjections})
{
@reports = $value;
}
foreach $value (@{$flatProjections})
{
@reports = $value;
}
{
@reports = $value;
}
foreach $value (@{$flatAggregations})
{
@reports = $value;
}
foreach $value (@{$xmlProjections})
{
@reports = $value;
}
foreach $value (@{$flatProjections})
{
@reports = $value;
}
Coloreado en 0.003 segundos, usando GeSHi 1.0.8.4
Pero no funciona pues guarda únicamente el último elemento que lee.
Yo lo que quiero es irlos acumulando en el array @reports.
¿Alguna idea sencillita?
¡¡Gracias!!
Felipe