你好每一个我想把我的数组转换成其他数组类型,plz帮助我.一世
我用这个
我用这个
$row = MysqL_fetch_array($result,MysqL_ASSOC);
和输出是
Array ( [user_id] => 250 [name] => a [age] => sfsf [pic_path] => )
但我想要这种格式的输出
Array ( [0] => Array ( [user_id] => 250 [name] => a [age] => sfsf [pic_path] => ) [1] => Array ( [user_id] => 251 [name] => b [age] => sfsfs [pic_path] => ) )
$data = array(); // create a variable to hold the information while (($row = MysqL_fetch_array($result,MysqL_ASSOC)) !== false){ $data[] = $row; // add the row in to the results (data) array } print_r($data); // print result
2017年2月更新现在是2017年,它建议你使用PDO而不是MysqL_ *.更安全,可以使用fetchAll本地返回(如“TrexXx的答案”所示).