从while循环PHP设置单维数组

时间:2014-02-13 17:38:40

标签: php mysqli

您好我试图将我的mysqli结果中的新数组转换成单个数组。

我怎样才能实现它?我试过这段代码,但效果不好。

$mysqli = new mysqli("****");

    $sql = "SELECT foo FROM foo";

$stmt = $mysqli->prepare($sql);

$stmt->execute();

$stmt->store_result();

$stmt->bind_result($foo);

$ids = array();

while ($stmt->fetch()) 
{
 $ids[] = $foo;
}

最终的数组应该是单维的:

{1, 2, 3, 4, 5...}

0 个答案:

没有答案