JsonController.php 186 B

123456789
  1. <?php
  2. class JsonController extends Zend_Controller_Action
  3. {
  4. public function indexAction()
  5. {
  6. $this->_helper->json->sendJson(array('message' => 'Hello, World!'));
  7. }
  8. }