json.php 219 B

1234567
  1. <?php
  2. // Set content type
  3. header('Content-type: application/json');
  4. // Use the PHP standard JSON encoder.
  5. // http://www.php.net/manual/en/function.json-encode.php
  6. echo json_encode(array('message' => 'Hello, World!'));