Home  >  Article  >  Backend Development  >  数组操作解决思路

数组操作解决思路

WBOY
WBOYOriginal
2016-06-13 13:38:42758browse

数组操作

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->array (
  'time' => '2012-03-05 13',
  'type' => 'ETC56-605N',
  'count' => '52',
)
array (
  'time' => '2012-03-05 14',
  'type' => 'ETC56-605N',
  'count' => '8',
)
array (
  'time' => '2012-03-05 14',
  'type' => 'ETC56-542N',
  'count' => '39',
)
array (
  'time' => '2012-03-05 15',
  'type' => 'ETC56-542N',
  'count' => '41',
)
array (
  'time' => '2012-03-05 15',
  'type' => 'ETC61-560N',
  'count' => '10',
)

如何变成array(time=>array(type=>count))这种形式?

------解决方案--------------------
这样?
PHP code
$arr = array(
        array (
          'time' => '2012-03-05 13',
          'type' => 'ETC56-605N',
          'count' => '52',
        ),  
        array (
          'time' => '2012-03-05 14',
          'type' => 'ETC56-605N',
          'count' => '8',
        ),  
        array (
          'time' => '2012-03-05 14',
          'type' => 'ETC56-542N',
          'count' => '39',
        ),  
        array (
          'time' => '2012-03-05 15',
          'type' => 'ETC56-542N',
          'count' => '41',
        ),  
        array (
          'time' => '2012-03-05 15',
          'type' => 'ETC61-560N',
          'count' => '10',
        )   
);
foreach($arr as $array)
{
        $newarr[$array['time']][$array['type']] += $array['count'];
}
print_r($newarr); <div class="clear">
                 
              
              
        
            </div>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn