How to classify the following array of statistics

Source: Internet
Author: User
How to classify statistics in the following array
$t 2=array
(
[Nanchang] = = Array
(
[Excellent] = 1
[Good] = 1
)

[Ganzhou] = = Array
(
[Excellent] = 2
)

[Jiujiang] = Array
(
[Good] = 1
[Poor] = 1
)
)

Nanchang, Ganzhou Jiujiang excellent number of statistics. (According to $t2 to calculate the number of good difference)
The excellent array is as follows
$t 2_yx=array (0 = ' 1 ', 1 = ' 2 ', 2 = ' 0 ');

A good array is as follows
$t 2_lh=array (0 = ' 1 ', 1 = ' 0 ', 2 = ' 1 ');
The bad array is as follows
$t 2_cd=array (0 = ' 0 ', 1 = ' 0 ', 2 = ' 1 ');

http://bbs.csdn.net/topics/390628423
Or look at this.

Share to:


------Solution--------------------
You shouldn't have learned PHP.

$good = Array ();
$ok = Array ();
$bad = Array ();
foreach ($t 2 as $k = $v)
{
$good [$k] = $v ["excellent"]? $v ["excellent"]: 0;
$ok [$k] = $v ["Good"]? $v ["Good"]: 0;
$bad [$k] = $v ["Bad"]? $v ["Bad"]: 0;
}

Print_r ($good);
Print_r ($ok);
Print_r ($bad);

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.