0

我正在创建一个类函数,它接受一个 mysql 查询结果并返回一个多维数组,其中第一个数组指针是表列,第二个指针是它在 MySQL 数据中位置的数字指示符。

例如,该表具有以下列:

Groupname
Groupid
Groupurl

我想这样称呼它的方式是:

$arrayname[groupname][1];

我已经形成了 2 个数组,它们是:

$colnames其中包含来自特定 mysql 查询的所有列和

$$colname它是列名的变量变量,包含每列中的所有数据。例如:$groupurl是一个包含该列中所有数据的数组。

我似乎无法获得一个循环来将数组作为多维对象加入,虽然我可以为特定表手动执行此操作,但它是一个类函数,可变变量部分让我崩溃=\

================感谢IMSoP给了我这个想法,解决方案是==================

函数中的 $result 是对表的成功 MySQL 查询。

function tableAsMatrix($result)
{
    //declare $results as array for use in loop
    $results = array();

    //this gets all the col names and sets them as $colnames[]
    while( $cols = $result->fetch_field() )
    {
        $colnames[] = $cols->name;
    }

    //this loops through and assigns all cols as multidimensional $results[colname][id]
    foreach ($colnames as $fields)
    {
        while ($row = $result->fetch_array(MYSQLI_ASSOC))
        {
           foreach($colnames as $field)
           {
               $results[$field][] = $row[$field];
           }
        }
    }

    //return to object
    return $results;

}
4

1 回答 1

0

我使用的功能是:

function tableAsMatrix($result)
{
    //declare $results as array for use in loop
    $results = array();

    //this gets all the col names and sets them as $colnames[]
    while( $cols = $result->fetch_field() )
    {
        $colnames[] = $cols->name;
    }

    //this loops through and assigns all cols as multidimensional $results[colname][id]
    foreach ($colnames as $fields)
    {
        while ($row = $result->fetch_array(MYSQLI_ASSOC))
        {
           foreach($colnames as $field)
           {
               $results[$field][] = $row[$field];
           }
        }
    }

    //return to object
    return $results;

}
于 2013-03-11T10:16:43.957 回答