fork download
  1. <?php
  2.  
  3. $str = 'Alesso; Anitta; Billboard; Marshmello; Poo Bear';
  4. $output = str_replace("; ", ";", $str);
  5. $result = explode(';', $output);
  6. foreach($result as $link)
  7. {
  8. echo "<a href='#'>".$link."</a>\n";
  9. }
Success #stdin #stdout 0s 82880KB
stdin
Standard input is empty
stdout
<a href='#'>Alesso</a>
<a href='#'>Anitta</a>
<a href='#'>Billboard</a>
<a href='#'>Marshmello</a>
<a href='#'>Poo Bear</a>