json_controller.php 237 B

123456789101112
  1. <?php
  2. class JsonController extends AppController
  3. {
  4. public function index()
  5. {
  6. View::select(null, null);
  7. header('Content-type: application/json');
  8. echo json_encode(['message' => 'Hello, World!']);
  9. }
  10. }