fleaphp crud 조작의find 함수 사용 방법

1659 단어
find 함수의 원형
 
  
/**
* , false
*
* @param mixed $conditions
* @param string $sort
* @param mixed $fields
* @param mixed $queryLinks
*
* @return array
*/
function & find($conditions, $sort = null, $fields = '*', $queryLinks = true)
{
$rowset =& $this->findAll($conditions, $sort, 1, $fields, $queryLinks);
if (is_array($rowset)) {
$row = reset($rowset);
} else {
$row = false;
}
unset($rowset);
return $row;
}

find와findAll의 차이점은find에 매개 변수 $limit이 하나 부족하다는 것이다. 즉,find는 조건에 맞는 첫 번째 기록만 찾을 수 있다는 것이다.
$conditions,
$sort = null,
$fields = ‘*'
$queryLinks = true
$conditions = null, 질의 기준
필드 이름과 값을 포함하는 일반적인 그룹
예컨대
 
  
array('fieldname' => 'value1','fieldnameb' => 'value2')

$sort = null, 정렬
필드 및 정렬 방식
예컨대
 
  
'ID ASC,post_date DESC' // 'ID ASC'

$fields = ‘*';, 조회 표시가 필요한 필드, 기본적으로 모두 표시
예컨대
 
  
array('ID','post_title','post_parent')

$queryLinks = true
fleaphp 함수find 방법의 사용 및 예시
 
  
$rowsets = $tableposts->find(array('post_type'=>'post'),'ID ASC,post_date DESC',array('ID','post_title','post_parent'));
dump($rowsets);

좋은 웹페이지 즐겨찾기