fork download
  1. <?php
  2. $meu_vetor = array("A", "B", "C", "D", "E");
  3. foreach ($meu_vetor as $elemento){
  4. echo $elemento;
  5. }
  6. ?>
Success #stdin #stdout 0.03s 25436KB
stdin
Standard input is empty
stdout
ABCDE