欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

函数代码详细求解解决办法

程序员文章站 2022-06-10 09:50:13
...
函数代码详细求解
请高手帮忙详细解释下段代码
public function fetch_all_by_sql($where, $order = '', $start = 0, $limit = 0, $count = 0, $alias = '')
{
$where = $where && !is_array($where) ? " WHERE $where" : '';
if(is_array($order)) {
$order = '';
}
if($count) {
return DB::result_first('SELECT count(*) FROM '.DB::table($this->_table).' %i %i %i '.DB::limit($start, $limit), array($alias, $where, $order));
}
return DB::fetch_all('SELECT * FROM '.DB::table($this->_table).' %i %i %i '.DB::limit($start, $limit), array($alias, $where, $order));
}

网友评论

文明上网理性发言,请遵守 新闻评论服务协议

我要评论
  • 函数代码详细求解解决办法
  • 专题推荐

    作者信息
    函数代码详细求解解决办法

    认证0级讲师

    推荐视频教程
  • 函数代码详细求解解决办法javascript初级视频教程
  • 函数代码详细求解解决办法jquery 基础视频教程
  • 视频教程分类