fetch_assoc只有10个结果而不是全部

时间:2018-03-18 17:17:11

标签: php mysql

 $top = db::find_by('pl_id', 'playlist', '1', 'order by sort ASC');

$c = 0;
$ids = '';

while ($row = $top->fetch_assoc()) {
    if ($c <10) {
        $aid = $row['aid'];
        $oid = $row['oid'];
        $ids .= $aid . '_' . $oid . ',';
        $c++;
    }
}

我只得到一个结果,但它应该更多。我如何获得所有结果?

1 个答案:

答案 0 :(得分:0)

在你的代码中,你只限制了10个结果的回声

取消支票$ c&lt; 10

[]
2018-03-18 22:00:20