pg_fetch_all和pg_fetch_assoc效率

时间:2016-08-09 08:50:33

标签: php postgresql

pg_fetch_all功能是否比代码段

更有效
while( $res = pg_fetch_assoc($rs) ) 
{
    $out[] = $res;
}

我想知道pg_fetch_all是如何在内部实施的。我想知道while-approach是否(比)使用此函数效率低得多,以及为什么。

1 个答案:

答案 0 :(得分:0)

内部两个片段都包含循环遍历所有获取行的循环,因此它们在效率方面非常相似。 internal implementation of pg_fetch_all