我正在尝试从我的数据库中获取一些数据,然后将其传递给一个数组供以后使用。我正在使用MySQLi作为我的驱动程序。
这是我的代码:
// Build a query to get skins from the database
$stmt = $mysqli->prepare('SELECT id, name, description, author, timestamp, url, preview_filename FROM `skins` LIMIT 0, 5');
$stmt->execute();
$stmt->bind_result($result['id'], $result['name'], $result['desc'], $result['auth'], $result['time'], $result['url'], $result['preview']);
// The skins array holds all the skins on the current page, to be passed to index.html
$skins = array();
$i = 0;
while($stmt->fetch())
{
$skins[$i] = $result;
$i++;
}
print_r($skins);
问题是,当执行此操作时,$skins
数组包含查询中的最后一个结果行。这是$ skins的print_r:
Array
(
[0] => Array
(
[id] => 3
[name] => sdfbjh
[desc] => isdbf
[auth] => dfdf
[time] => 1299970810
[url] => http://imgur.com/XyYxs.png
[preview] => 011e5.png
)
[1] => Array
(
[id] => 3
[name] => sdfbjh
[desc] => isdbf
[auth] => dfdf
[time] => 1299970810
[url] => http://imgur.com/XyYxs.png
[preview] => 011e5.png
)
[2] => Array
(
[id] => 3
[name] => sdfbjh
[desc] => isdbf
[auth] => dfdf
[time] => 1299970810
[url] => http://imgur.com/XyYxs.png
[preview] => 011e5.png
)
)
正如您所看到的,查询的最后一个结果是出于某种原因填充了所有数组条目。
任何人都可以解释这种行为并告诉我我做错了什么吗?谢谢。 :)
编辑:以下是解决方案:
while($stmt->fetch())
{
foreach($result as $key=>$value)
{
$tmp[$key] = $value;
}
$skins[$i] = $tmp;
$i++;
}
答案 0 :(得分:1)
mysqli::fetch
,强调我的:
问题是返回的$row
是引用而不是数据。
因此,当您编写$array[] = $row
时,$array
将填充数据集的最后一个元素。