Jump to content
Fórum Script Brasil
  • 0

Definir tamanho fixo array


rocha_jl

Question

Preciso carregar as informações de um arquivo xml para um array (isto eu consigo fazer). O problema é que o arquivo xml pode conter 50 registros, mas só posso carregar 20 no array para visualizar na tela via tabela. Como poderia fazer algo assim? Segue código onde não consigo fazer esta limitação:

<?php

$xml = simplexml_load_file("tabela.xml");

echo "<table border=0 cellspacing=0>";

$numCols = 2; // Número de Colunas

$i=0;

foreach($xml as $tabela){

print($i%$numCols==0) ? "<tr>\n" : null;

print( "<td width='15' height='45' background='imagens/fundo_itens.jpg' background-repeat:repeat-x>" . "&nbsp" . "</td>\n" );

print( "<td width='387' height='45' background='imagens/fundo_itens.jpg' background-repeat:repeat-x style='font-size:28px'><strong>" . $tabela->descricao . "</strong></td>\n" );

print( "<td width='75' height='45' background='imagens/fundo_itens.jpg' background-repeat:repeat-x style='font-size:35px' align=right><strong>" . $tabela->preço .'</strong><br/>' . "</td>\n" );

print( "<td width='18' height='45' background='imagens/fundo_itens.jpg' background-repeat:repeat-x>" . "&nbsp" . "</td>\n" );

print($i%$numCols==$numCols-1) ? "</tr>\n" : null;

$i++;

} //fim do foreach

echo "</table>";

?>

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Você quer colocar os 20 primeiros?

A melhor maneira é dar 'unset()' nos elementos que você não quer amnter no array.

for($i=20;$i<50;$i++)
       unset($xml[$i]);

Assim, irá manter as posições de 0 até 19 (as 20 primeiras), e as outras não existirão mais.

Edited by mJi
Link to comment
Share on other sites

  • 0

Me passaram isso também:

<?php

$xml = simplexml_load_file("tabela.xml");

echo "<table border=0 cellspacing=0>";

$numCols = 2; // Número de Colunas

$i=0;

foreach($xml as $tabela){

print($i%$numCols==0) ? "<tr>\n" : null;

print( "<td width='15' height='45' background='imagens/fundo_itens.jpg' background-repeat:repeat-x>" . "&nbsp" . "</td>\n" );

print( "<td width='387' height='45' background='imagens/fundo_itens.jpg' background-repeat:repeat-x style='font-size:28px'><strong>" . $tabela->descricao . "</strong></td>\n" );

print( "<td width='75' height='45' background='imagens/fundo_itens.jpg' background-repeat:repeat-x style='font-size:35px' align=right><strong>" . $tabela->preço .'</strong><br/>' . "</td>\n" );

print( "<td width='18' height='45' background='imagens/fundo_itens.jpg' background-repeat:repeat-x>" . "&nbsp" . "</td>\n" );

print($i%$numCols==$numCols-1) ? "</tr>\n" : null;

if ($i == 19) {

break;

}

$i++;

} //fim do foreach

echo "</table>";

?>

Link to comment
Share on other sites

  • 0

Também é possível, mas aí serve mais como um 'remendo'. Loops que saem por break geralmente servem para encontrar algo através da variável de controle. Mas este código funcionará corretamente, sim.

Edited by mJi
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...