fork download
  1. <?php
  2. // สมมติว่ามีข้อมูลในรูปแบบ array
  3. $data = [
  4. ['category' => 'A', 'value' => 10],
  5. ['category' => 'B', 'value' => 20],
  6. ['category' => 'C', 'value' => 15]
  7. ];
  8. header('Content-Type: application/json');
  9. echo json_encode($data);
  10. ?>
  11.  
Success #stdin #stdout 0.03s 25788KB
stdin
Standard input is empty
stdout
[{"category":"A","value":10},{"category":"B","value":20},{"category":"C","value":15}]