Ordenamento de Arrray para UL com várias colunas


/ Published in: PHP
Save to your folder(s)

Ordenamento de array para exibição em colunas múltiplas, via UL float.


Copy this code and paste it in your HTML
  1. // Tratamento da ordem para multiplas colunas
  2.  
  3. $nColunas = 4;
  4.  
  5. for( $i=1; $i<=$nColunas; $i++ ){
  6. $coluna[$i] = array();
  7. }
  8.  
  9. $col=1;
  10. foreach( $arr as $item )
  11. {
  12.  
  13. $coluna[$col][] = $item;
  14.  
  15. if( ++$col > $nColunas )
  16. $col = 1;
  17.  
  18. }
  19.  
  20. $arrOut = array();
  21.  
  22. for( $i=1; $i<=$nColunas; $i++ )
  23. {
  24.  
  25. foreach( $coluna[$i] as $item )
  26. {
  27.  
  28. $arrOut[] = $item;
  29.  
  30. }
  31.  
  32. }
  33.  
  34. $this->view->itens = $arrOut;

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.