sun's longitude:241 52 5.87 
· 자유게시판 · 묻고답하기 · 알파문서 · RPMS list
· 사용자문서 · 팁/FAQ모음 · 리눅스Links · 자료실
· 서버정보 · 운영자 · Books/FAQ · FreeBSD
/board/read.php:소스보기  
알파문서
자주 잊어먹거나, 메모해 둘 필요성이 있는 팁이나 문서, 기타 등등
[*** 쓰기 금지단어 패턴 ***]
글 본문 중간에 업로드할 이미지를 추가하는 방법 : @@이미지이름@@
ex) @@foo.gif@@
41 번 글의 답장글: Re: [PHP] mysql_fetch_assoc() 속도 튜닝
글쓴이: 산이 [홈페이지] 글쓴날: 2003년 07월 03일 00:25:30 목(새벽) 조회: 3996
$result = mysql_query($sql);

1. get all array

## good
##
while($tmp[] = mysql_fetch_assoc($result));

## some good
##
while($list = mysql_fetch_assoc($result))
{
  $tmp[] = $list;
}

## not good
##
while($list = mysql_fetch_assoc($result))
{
  $tmp[] = &$list;
}

## not good
##
$size = mysql_num_rows($result);
for($i=0; $i<$size; $i++)
{
  $tmp[] = mysql_fetch_assoc($result);
}

## not good
##
$size = mysql_num_rows($result);
for($i=0; $i<$size; $i++)
{
  $tmp[] = &mysql_fetch_assoc($result);
}


2. get partial array

## good
##
while($list = mysql_fetch_assoc($result))
{
  ...
  ... = &$list['foo'];
}

## not good
##
$size = mysql_num_rows($result);
for($i=0; $i<$size; $i++)
{
  $list = mysql_fetch_assoc($result);
  ...
  ... = $list['foo'];
}

## not good
##
$size = mysql_num_rows($result);
for($i=0; $i<$size; $i++)
{
  $list = mysql_fetch_assoc($result);
  ...
  ... = &$list['foo'];
}

 
이전글 : Re: [PHP] use array() references
다음글 : [SHELL] 문자열 변수 파싱  
 from 61.254.75.40
JS(Redhands)Board 0.4 +@

|글쓰기| |답장쓰기| |수정| |삭제|
|이전글| |다음글| |목록보기|
인쇄용 

apache lighttpd linuxchannel.net 
Copyright 1997-2024. linuxchannel.net. All rights reserved.

Page loading: 0.01(server) + (network) + (browser) seconds