0
|touser| fromuser |  msg  |
|  A   |    B     | hi    |
|  A   |    B     | hello |
|  C   |    D     | bye   |
|  C   |    E     | hey   |

当我在 mysql 工作台中使用以下查询时,它显示所需的结果是具有给定名称的所有行:

select * from db.table1 where touser in ('A');

输出:

|touser| fromuser |  msg  |
|  A   |    B     | hi    |
|  A   |    B     | hello |

但是当我从 php 命令传递查询时,结果数组只包含第一条记录

<?php
 //connection establishing commands
 $sql="select * from db.table1 where touser in ('A')";

 $result=mysqli_query($link, $sql);

 $data=mysqli_fetch_array($result,MYSQLI_NUM);

 print_r($data);

 //other stuff;
 ?>

输出:

    Array ( [0] => A [1] => B [2] => Hi )

我在 php 命令中遗漏了什么吗?

4

1 回答 1

2

你是 PH​​P 只是返回 MySQL 结果集的第一行。

你会想要更换$data=mysqli_fetch_array($result,MYSQLI_NUM);

while ($data = mysqli_fetch_array($result, MYSQLI_NUM)) {
    print_r($data);
}

它将遍历结果集的每一行。换句话说,mysqli_fetch_array 函数不会将整个结果集作为数组获取,它只是返回单行,然后将行“指针”移动到下一行。

于 2013-09-19T18:56:19.497 回答