fork download
  1. <?php
  2.  
  3. // your code goes here
  4. $string = "vendido";
  5. $array = explode("," , $string);
  6. $_string = "";
  7.  
  8. foreach($array as $index => $value){
  9.  
  10. $_string .= "'" . $value . "'";
  11. if($index != count($array) -1){
  12. $_string .=",";
  13. }
  14. }
  15.  
  16. echo $_string;
Success #stdin #stdout 0.01s 24260KB
stdin
Standard input is empty
stdout
'vendido'