簡體   English   中英

如何獲取mysqli結果的下一行?

[英]How to get the next row in mysqli result?

我想在mysql結果的周期中獲取下一行,以編寫帶有下一個和上一個元素代碼的列表,例如以下示例:

<?php $previous = null;
$next = null;
while ($row = $result->fetch_assoc()) {
$next = ??????????????? // how to get it?
?>
<li code="<?php echo $row['code']; ?>" previous="<?php echo $previous; ?>" next="<?php echo $next; ?>">Hello world!</li>
<?php
$previous = $row['code']; // previous is easy to get...
} ?>

不確定MySQLi,但以下是我在PDO中的方法:

$data = $stmt->fetchAll(\PDO::FETCH_ASSOC);
for($i = 0; $i < count($data); $i++) {
   $next = isset($data[$i+1]) ? $data[$i+1] : null;
}

如果mysqli中沒有fetchAll ,則執行以下操作:

while ($row = $result->fetch_assoc()) {
   $data[] = $row;
}

if ( ! empty($data)) {
  for($i = 0; $i < count($data); $i++) {
     $next = isset($data[$i+1]) ? $data[$i+1] : null; // next
     $prev = isset($data[$i-1]) ? $data[$i-1] : null; // previous
     $curr = isset($data[$i])   ? $data[$i]   : null; //current
  }
}

關於以下內容如何:

SELECT * FROM table WHERE id > '$currentID' ORDER BY id LIMIT 1;

得到下一個可能的行。

看看這個解決方案,您對此有何看法? 它可以工作,但是會更慢嗎? 該算法是否至少需要兩次通過? 你怎么看?

$db = DB::getConnection();
$result = $db->query( "SELECT * FROM objects" );

$next = null;
$previous = null;
$temp_previous = null;
$print = false;
$row = null;
$fetchit = false;
$code = null;
echo "<ul>";
while (true)
{

if ($print) {
   if ($fetchit) {
    $row = $result->fetch_assoc();
        $next = $row['code'];
   }
   echo "<li code='$code' next='$next' previous='$previous'>{$row['description']}</li>" . endl();
   $previous = $temp_previous;
   $print = false;
}
else {
 if (!$fetchit)
     $row = $result->fetch_assoc();
 $code = $row['code'];
 $temp_previous = $row['code'];
 $print = true;
 $fetchit = true;
}

if(!is_array($row)) break;

}

echo "</ul>";

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM