DbController.php 287 B

123456789101112
  1. <?php
  2. class DbController extends Zend_Controller_Action
  3. {
  4. public function indexAction()
  5. {
  6. $table = new Zend_Db_Table('World');
  7. $result = $table->fetchRow(array('id = ?' => mt_rand(1, 10000)));
  8. $this->_helper->json->sendJson($result->toArray());
  9. }
  10. }