fork download
  1. <?php
  2.  
  3. $group = '{"title":"Title", "artist":"Artist", "cover":"img/1.png", "file":"./file/1.mp3"}';
  4.  
  5. $array = json_decode($group, true);
  6. $result = [];
  7.  
  8. foreach($array as $key => $value) {
  9. $result[] = $key . ':' . $value;
  10. }
  11.  
  12. $result = implode(',', $result);
  13.  
  14. echo '{' . $result . '}';
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
{title:Title,artist:Artist,cover:img/1.png,file:./file/1.mp3}