fork(3) download
  1. <?php
  2.  
  3. $dat = array("0"=>"hello","1"=>"world");
  4. echo json_encode($dat); // work
  5.  
  6. $data = array("0"=>"hello","1"=>"180.00 10µH");
  7. echo json_encode($data, JSON_UNESCAPED_UNICODE); // blank response ..
  8.  
  9. ?>
Success #stdin #stdout 0.02s 52480KB
stdin
Standard input is empty
stdout
["hello","world"]["hello","180.00 10µH"]