123456789101112131415161718192021222324 |
- <?php
- include_once dirname(__FILE__) . '/../main.php';
- $GET = query_paras();
- $name = urldecode($GET['name']);
- $uid = $GET['oid'];
- $arr = daoInst()->select('*')->from('tab_rolename')
- ->where('roleName')->eq($name)
- ->orWhere('userID')->eq($uid)
- ->fetch_array();
- $count = count($arr);
- $result = new stdClass();
- $result->total = $count;
- $result->rows = $arr;
- echo json_encode($result);
|