json.php 363 B

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