json.php 316 B

1234567891011121314151617
  1. <?php
  2. //
  3. // JSON Encoding Test
  4. //
  5. // Set content type
  6. header("Content-type: application/json");
  7. // Create an array with the response string.
  8. $arr = array(
  9. "message" => "Hello, World!"
  10. );
  11. // Use the PHP standard JSON encoder.
  12. // http://www.php.net/manual/en/function.json-encode.php
  13. echo json_encode($arr);
  14. ?>