PHP-MySQL:将查询作为数组索引名称和值返回

时间:2013-07-29 15:58:19

标签: php mysql mysqli

我有一个像这样的MySQL表:

------------
|animal|legs|
------------
| cat     4 |
| chicken 2 |

是否有可能在PHP中返回一个数组,其中将animals作为索引名称,将leg作为其值,而不像mysqli_fetch_all那样逐个获取?

$result[cat]=4
$result[chicken]=2.

我试过

$q = mysqli_fetch_all($q);
$array=array_combine($q2[0], $q2[1]);

但它没有给我我想要的输出。

2 个答案:

答案 0 :(得分:0)

使用safeMysql

$dic = $db->getIndCol("animal","SELECT * FROM animals");

答案 1 :(得分:0)

尝试:

$result = array();
while ($row = mysqli_fetch_all($q, MYSQLI_ASSOC)){
   $result[$row['animal']] = $row['legs'];
}

请记住以这种方式在数组标签中的字符串周围使用撇号,如'cat'或'chicken'。