fork download
  1. <?php
  2.  
  3. $registos = array("noticia1","noticia2", "noticia3");
  4. $anuncios = array("anuncio1", "anuncio2", "anuncio3");
  5.  
  6. $lista = array_merge($registos, $anuncios);
  7.  
  8. shuffle($lista);
  9.  
  10. foreach ($lista as $linha){
  11. echo "$linha\n";
  12. }
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
anuncio2
anuncio3
noticia2
noticia3
anuncio1
noticia1