如何复制其中包含其他关联数组的数组?我说的是从 a 返回的结果集mysql_fetch_assoc
。
所以说我有这样的结构......
connect
$result = query;
while ($row = mysql_fetch_assoc($result)) {
array_push($static_row, $row); // here lies the problem
}
我想把它$static_row
作为$row
. 最终我想把那个查询和while循环放在一个函数中,然后简单地返回$static_row
作为参考, a print_r
of$row
看起来像这样
Array ( [key1] => value1 [key2] => value2 )
Array ( [key1] => value1 [key2] => value1 )
谢谢,如果您需要更多详细信息,请告诉我