>백엔드 개발 >PHP 튜토리얼 >函数代码详细求解

函数代码详细求解

WBOY
WBOY원래의
2016-06-23 14:13:341053검색

请高手帮忙详细解释下段代码
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));
}


回复讨论(解决方案)

那里不清楚你可以标出来

都不清楚哟

public function fetch_all_by_sql($where, $order = '', $start = 0, $limit = 0, $count = 0, $alias = '') 

一个数据库搜索函数,可返回总数量

参数:$where 同sql  WHERE
         $order 同sql  ORDER
          $start 同sql 从哪一条记录开始返回
          $limit 返回多少条记录
           $count 是否直接返回搜索结果记录条数
             alias 不太明白是个什么作用

不简单看到条正儿八经的的回复

楼上+1

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
이전 기사:关于并发请求咨询一下다음 기사:PHP 链接DBF