포럼
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
select 쿼리에 대한 궁금증 (stdClass와 array)
2011.07.13 17:08
두개의 유사한 쿼리가 있습니다.
그런데 리턴된 결과는 아래와 같이 되지요.
첫번째경우
data = stdClass (
name = '홍길동'
age = '19'
)
두번째경우
data = array(
[0] = stdClass(
name = '홍길동'
age = '19'
)
)
왜 이런 차이가 생기는지 아시는 분 있나요?
그런데 리턴된 결과는 아래와 같이 되지요.
첫번째경우
data = stdClass (
name = '홍길동'
age = '19'
)
두번째경우
data = array(
[0] = stdClass(
name = '홍길동'
age = '19'
)
)
왜 이런 차이가 생기는지 아시는 분 있나요?
executeQueryArray() 함수의 경우 결과 행의 개수와 관계 없이 무조건 배열로 들어가게 된답니다.