fork download
  1. <?php
  2.  
  3. $section_id_arr = array('one' , 'two', 'three', 'four', 'five');
  4.  
  5. $count_section_id = count($section_id_arr);
  6. for($j=0; $j<$count_section_id; $j++)
  7. {
  8. echo $section_id_arr[$j].' ';
  9. }
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
one two three four five