dqkf36241 2012-09-07 12:24
浏览 40
已采纳

从PHP多维数组中检索值

I have a multi-dimensional array that I want to print statistics from for a website admin. My problem is that once I get the data into an array in the format I want it, I can't figure out how to retrieve it. I have to know the key values in order to get it e.g. $uniqueBrowser["Firefox"]["14.0.1"]['times'];

I want to be able to say for example - Firefox 70%, IE 30% as a start (aggregate all version 'times used' for the browsers). I then want to drill down further to specific versions e.g. FF3.6 14%, FF14 51% etc. (simply printing out the times value associated with the version).

EDIT: My Question is, how do I retrieve my data in the way described above? My head is fried and I've been on this for too long. Please someone put me out of my misery. If there is a better way to do this, please let me know also.

The code I have so far is below. This code is run in a for each loop which iterates through data returned by the database. The $browser and $version variables are set to the browser values and version values returned from the database at each iteration of the foreach loop.

if(in_array($browser, $uniqueBrowser)) {        
    if(in_array($version, $uniqueBrowser[$browser])) {
        $uniqueBrowser[$browser][$version]['times'] = $uniqueBrowser[$browser][$version]['times'] + 1;
    } else {            
        $uniqueBrowser[$browser]['version'] = $version;
        $uniqueBrowser[$browser][$version]['times'] = 1;
    }       
} else {
    $uniqueBrowser[] = $browser;
    $uniqueBrowser[$browser]['version'] = $version;
    $uniqueBrowser[$browser][$version]['times'] = 1;
}

When I run this code, it gives me this (via var_dump):

Browser data: array(4) {
  [0]=>
  string(7) "Firefox"
  ["Firefox"]=>
  array(3) {
    ["version"]=>
    string(6) "14.0.1"
    [15]=>
    array(1) {
      ["times"]=>
      int(2)
    }
    ["14.0.1"]=>
    array(1) {
      ["times"]=>
      int(15)
    }
  }
  [1]=>
  string(17) "Internet Explorer"
  ["Internet Explorer"]=>
  array(2) {
    ["version"]=>
    string(9) "8.0.0.253"
    ["8.0.0.253"]=>
    array(1) {
      ["times"]=>
      int(1)
    }
  }
}
  • 写回答

3条回答 默认 最新

  • drv16821 2012-09-07 12:44
    关注

    I know JvdBerg has already given an answer like this, but I added my comment first. So I don't feel like I'm copying him.

    As an example I've created the following table structure. Hopefully it's like yours.

    +---------+------------------+------+-----+---------+----------------+
    | Field   | Type             | Null | Key | Default | Extra          |
    +---------+------------------+------+-----+---------+----------------+
    | id      | int(11) unsigned | NO   | PRI | NULL    | auto_increment |
    | browser | varchar(120)     | YES  |     | NULL    |                |
    | version | varchar(50)      | YES  |     | NULL    |                |
    +---------+------------------+------+-----+---------+----------------+
    

    Then I inserted the following rows, again, hopefully like yours.

    +----+---------+---------+
    | id | browser | version |
    +----+---------+---------+
    |  1 | Firefox | 3.6     |
    |  2 | Firefox | 4.1     |
    |  3 | Firefox | 3.6     |
    |  4 | Safari  | 5.1.7   |
    |  5 | Safari  | 6       |
    |  6 | Firefox | 14.0.1  |
    |  7 | IE      | 7       |
    |  8 | IE      | 8       |
    |  9 | IE      | 7       |
    | 10 | Firefox | 14.0.1  |
    | 11 | Opera   | 12.0.1  |
    | 12 | Safari  | 5.1.7   |
    +----+---------+---------+
    

    Then the following query produced these results.

    mysql> SELECT browser, version, COUNT(version) AS times FROM demo.browsers GROUP BY browser;
    +---------+---------+-------+
    | browser | version | times |
    +---------+---------+-------+
    | Firefox | 3.6     |     5 |
    | IE      | 7       |     3 |
    | Opera   | 12.0.1  |     1 |
    | Safari  | 5.1.7   |     3 |
    +---------+---------+-------+
    

    If you want it to be more precise you can use GROUP BY browser, version instead of just by the browser.

    mysql> SELECT browser, version, COUNT(version) AS times FROM demo.browsers GROUP BY browser, version;
    +---------+---------+-------+
    | browser | version | times |
    +---------+---------+-------+
    | Firefox | 14.0.1  |     2 |
    | Firefox | 3.6     |     2 |
    | Firefox | 4.1     |     1 |
    | IE      | 7       |     2 |
    | IE      | 8       |     1 |
    | Opera   | 12.0.1  |     1 |
    | Safari  | 5.1.7   |     2 |
    | Safari  | 6       |     1 |
    +---------+---------+-------+
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 R语言卸载之后无法重装,显示电脑存在下载某些较大二进制文件行为,怎么办
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?
  • ¥15 关于#vue.js#的问题:修改用户信息功能图片无法回显,数据库中只存了一张图片(相关搜索:字符串)
  • ¥15 texstudio的问题,