MySQLi多个查询,访问第二个数组

时间:2014-07-01 15:51:45

标签: php mysql arrays mysqli

我有一个使用多个查询的多查询MySQLi语句,在使用var_dump时会带来以下内容:

数组的var_dump

array(1) { ["company"]=> string(8) "ffr3e456" ["high_1"]=> string(8) "8.32465" }
array(2) { ["company"]=> string(8) "gg8751hw" ["high_2"]=> string(7) "7.66574" }

我用来在PHP文件中显示数组的代码选取第一个数组(即high_1信息的内容,而不是第二个数据。

if ($mysqli->multi_query($query)) {
    do {
        /* store first result set */
            if ($result = $mysqli->store_result()) {
                while ($row = $result->fetch_assoc()) {
                    for ($p=1; $p<=2; $p++)
                         {
                         echo number_format($row["high_".$p],2);

HTML输出显示来自第一个数组但不是第二个数组的数据。我相信我会忽视某些事情,欢迎任何建议和反馈。

2 个答案:

答案 0 :(得分:1)

$C = array_merge($A, $B);

您可以在此处阅读更多内容:http://www.php.net/manual/de/function.array-merge.php

答案 1 :(得分:0)

如果您显示返回结果的SQL语句,将会很有帮助。

返回的数组是否在单独的$ row结果中?

在这种情况下,您需要遍历每个$ row结果,例如:

foreach($query->result() as $row)
{
 for ($p=1; $p<=2; $p++)
 {
  echo number_format($row["novhigh_".$p],2);
 }
}

旁注:看起来数组中的键定义不合逻辑,为什么不能为&#34; novhigh&#34;提供相同的键值。元件?