fork download
  1. <?php
  2.  
  3. $array = [
  4. 'event=old',
  5. 'mytv=2017',
  6. ];
  7. $newArray = [];
  8. foreach ($array as $value) {
  9. $tmp = explode('=', $value);
  10. $newArray[$tmp[0] . ':='] = $tmp[1];
  11. }
  12. echo json_encode($newArray);
Success #stdin #stdout 0.02s 24420KB
stdin
Standard input is empty
stdout
{"event:=":"old","mytv:=":"2017"}