+ 复制到我的接口(请先登录,支持在线开发API)    预览接口发布效果    查看开发教程

<?php


/**
 * 获取示例数据列表 PHP接口源代码
 *
 * 接口说明:根据搜索条件,分页获取示例数据列表,支持排序、搜索
 *
 * 最后修改:
 *
 * @author dogstar www.yesapi.cn
 *
 * 来源:https://open.yesapi.cn/apicode/857.html
 */

function ($params$di) {
    
$result = array('err_code' => 0'err_msg' => '');

    
// 条件
    
$where = array();
    if (isset(
$this->haha)) $where['haha'] = $this->haha;
    if (isset(
$this->droplist)) $where['droplist'] = $this->droplist;

    
// 数据模型实例
    
$notorm $di->db->demo_tbl;
    if (!empty(
$where)) $notorm->where($where);

    
$result['total'] = intval($notorm->count('*')); // 总数
    
$result['items'] = $notorm->select('*'// 获取的字段,* 星号表示全部字段,多个字段用英文逗号分割
            
->page($this->page$this->perpage// 分页
            
->order('id DESC'//排序
            
->fetchAll();

    return 
$result;
}
在线运行   


回到顶部 ↑