sample.php 327 B

12345678910111213
  1. <?php
  2. header("Content-Type: application/json");
  3. $response = [];
  4. $response['content'] = 'Sample content, which is sending by REST api in JSON.';
  5. $response['title'] = 'Sample';
  6. $response['object'] = [];
  7. $response['object']['x'] = 10;
  8. $response['object']['y'] = 20;
  9. $response['object']['z'] = 30;
  10. echo(json_encode($response));