fork download
  1. <?php
  2.  
  3. $string = ",a,b,c,,,d,,";
  4. $str = explode(",", $string);
  5. $string_new = '';
  6. foreach($str as $data)
  7. {
  8. if(!empty($data))
  9. {
  10. $string_new .= $data. ',';
  11. }
  12. }
  13. echo substr_replace($string_new, '', -1);
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
a,b,c,d