제목 |
53 번 글의 답장글 : Re: [PHP] mysql_fetch_assoc() 속도 튜닝 |
이름 |
산이 [홈]http://linuxchannel.net/ |
$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'];
} |
2003년 07월 03일 00:25:30 목(새벽) from 61.254.75.40 |