我正在使用此查询来获取所有数据,但我还需要在其中添加它返回的行数。
这是我的代码:
function getUsers($id){
$users = $this->User->find('all', array('condition'=>array('my_id'=>$id)));
$numUsers = sizeof($users);
$users['User']['Total']= $numUsers;
echo json_encode($users);
}
包含用户的$dArray
所有数据,但我也希望它告诉我那里有多少用户。
我在想我会在 User 对象中获取数据,但这就是我们给我的
Object
0: Object
1: Object
2: Object
3: Object
4: Object
5: Object
User: Object
Total: 6
instead of adding it to the
0: Object
Company: Object
Group: Object
Team: Array[0]
User: Object
company_id: "20"
created: "2012-04-15 17:35:51"
email: "dd@gmail.com"
expiration_date: "2012-04-15 17:35:00"
firstname: "jason"
grants_id: null
group_id: "1"
id: "1"
lastname: "brawar"
modified: "2012-04-23 14:25:48"
name: null
password: "203e686b6a6938648ddd3eb0a8d95988ac638596"
phone: "abcd"
status: "Active"
type: null
username: "asim"
Total: 1