dtt78245 2011-01-24 06:04
浏览 39
已采纳

在zend框架中查询

It is my index Action of user Controller :

$users = new Application_Model_DbTable_Users();
        $this->view->users = $users->fetchAll(
        $users->select('userid,username')
        ->order('userid ASC')
        ->limit(10, 0)); 

It is my view :

<?php 
echo "<pre>";
echo print_r($this->users);
?>

In Output i want the JSON of result of user table ,but the Array in the view coming is it is

Zend_Db_Table_Rowset Object
(
    [_data:protected] => Array
        (
            [0] => Array
                (
                    [userid] => 1
                    [username] => rahul
                    [firstname] => rahul1
                    [lastname] => Khan2
                    [password] => ��2jr�``�(E]_�=^
                    [email] => salman@gmail.com
                    [avatar] => 4cfe07efd2e1c.jpg
                    [updatedon] => 2011-01-23 18:45:49
                    [createdon] => 0000-00-00 00:00:00
                    [featuredgibs] => 
                    [defaultgib] => 
                )

the complete

But i want only json :

{
"userid":"1",
"username": "rahul"
} 
  • 写回答

1条回答 默认 最新

  • duanhuayong6687 2011-01-24 06:19
    关注

    You have to define the columns you need in the from part, try this one:

    $users = new Application_Model_DbTable_Users();
    
    $select = $users->select()
                ->from('table', array('userid', 'username')) // important
                ->order('userid ASC')
                ->limit(10, 0);
    
    $this->view->users = Zend_Json::encode($users->fetchAll($select)); // output json
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 DS18B20内部ADC模数转换器
  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动