如何生成数组在mysql库中一个表中有这样两个字段,$cont_type,$cont_id,并且各自的记录数都超过一条,如何生成这样一个2维数组呢$tarTree[$cont_type][]=$cont_id;用mysql_fetch_row()吗 数组 分享到: ------解决方案--------------------//读取出来之后,生成为二维数组即可,直接贴示例代码 $conn = mysql_connect("localhost", 'root', ''); //如果有密码可以加上 $tarTree = array(); if($conn) { if(mysql_select_db('sql_primary', $conn)) //sql_primary是你的数据库名 { $sql = "SELECT * FROM customers";//customers替换为你的表即可 $result = mysql_query($sql); while($row = mysql_fetch_array($result)) { //echo $row['company']."\r\n"; $tarTree[$row['cont_type']][]=$row['cont_id']; } mysql_close($conn); } }?>로그인 후 복사