我有一个返回多个数组的查询,其中每个数组有 2 个位置(0 和 1)。如何将此结果合并到一个数组中,我不想要第一个位置 (0),只想要第二个位置?
//execute the SQL query and return records
$result = mssql_query($query);
$numRows = mssql_num_rows($result);
//display the results
for ($i=0;$i<numRows ;$i++) {
$row = mssql_fetch_assoc($result);
echo "<pre>";print_r($row); echo "</pre>";
}