fork download
  1. <?php
  2.  
  3. $myArray = array("Oh","God!","Please","make","me","Superman");
  4. // now lets see how we can Join this array to end up with a well formed string
  5. echo implode(" ",$myArray);
  6. echo "\n";
  7. echo implode(" dear ",$myArray);
  8.  
  9.  
  10. ?>
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
Oh God! Please make me Superman
Oh dear God! dear Please dear make dear me dear Superman