gpt4 book ai didi

php - Mysqli 获取数组第n行

转载 作者:可可西里 更新时间:2023-11-01 07:16:49 24 4
gpt4 key购买 nike

我有以下获取单行的代码:

$query = "SELECT *
FROM translations
WHERE iddoc = '$id'
AND submitted = 1;";
$result = mysqli_query($query);
$row = mysqli_fetch_array($result);

我知道这在 while 循环中很有用,您可以在其中循环遍历结果。

但我需要能够抓取满足此条件的特定行。此伪代码之后的内容:

$query = "SELECT *
FROM translations
WHERE iddoc = '$id'
AND submitted = 1;";
$result = mysqli_query($query);
$arrayofrows = mysqli_fetch_arrayofrows($result);
$arrayofrows[0] //(to get the first row)
$arrayofrows[1] //(2nd row)

等等……

我该怎么做?

最佳答案

你可以试试这样的东西

$arrayofrows = array();
while($row = mysqli_fetch_array($result))
{
$arrayofrows = $row;
}

你现在可以拥有

$arrayofrows[0] //(to get the first row)
$arrayofrows[1] //(2nd row)

关于php - Mysqli 获取数组第n行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12126333/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com