json.php 214 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(['message' => 'Hello, World!']);