dougu1952 2015-02-04 16:21
浏览 45
已采纳

PHP多维数组 - 计算实例数

I am struggling a bit with a multidimensional array in PHP. I am new to PHP so please be aware that I may come across as a bit of a noob.

What I am trying to achieve: I am using ExpressionEngine as my CMS, with Freeform Pro to record answers to a survey. The values of the answers are 1, 2, 3, 4 or 5. That all works fine. Then I am using a SQL query to pull that saved data out of the database. This is where it starts getting complicated. I need the average of each question in the survey. So the logical thing to do (I would think) is to pull the data for each question and put it in an array:

$tva_1 = array();
$tva_2 = array();
$tva_3 = array();
$tva_4 = array();

SELECT form_field_259, form_field_260, form_field_261, form_field_262 FROM exp_freeform_form_entries_13 WHERE status='open'

array_push($tva_1, ('{form_field_259}'));
array_push($tva_2, ('{form_field_260}'));
array_push($tva_3, ('{form_field_261}'));
array_push($tva_4, ('{form_field_262}'));

Keep in mind that $tva_1 may have 5 variables in it, for example: 2, 4, 3, 1, 4. The same goes for $tva_2 and so on.

So once I have assigned that data to the various tva_ arrays, I then need to put those four arrays into another array, namely $allNumberArray:

$allNumberArray = array($tva_1, $tva_2, $tva_3, $tva_4);

So now if I try print_r($allNumberArray); it shows me all the data is there and everything is working as it should.

Array
(
    [0] => Array
        (
            [0] => 3
            [1] => 5
            [2] => 2
            [3] => 5
            [4] => 3
        )

    [1] => Array
        (
            [0] => 3
            [1] => 2
            [2] => 4
            [3] => 3
            [4] => 3
        )

    [2] => Array
        (
            [0] => 5
            [1] => 4
            [2] => 3
            [3] => 1
            [4] => 3
        )

    [3] => Array
        (
            [0] => 4
            [1] => 2
            [2] => 5
            [3] => 1
            [4] => 3
        )

The problem is: I need to count the number of times each rating has been used. So for example, I can see from the above print_r that 5 is displayed 4 times, 4 is displayed 3 times, 3 is displayed 7 times, etc.. I have tried a count function such as the one below, but that only works in a single dimension array (I think):

$userStrongAgree = count(array_filter($allNumberArray, function ($agreementFive) { return $agreementFive == 5; }));

I have been stuck on this problem now for a day and a half, and my deadline is tomorrow afternoon, so I am starting to get a bit worried. I really would appreciate any help or just a pointer in the right direction.

Many thanks

  • 写回答

2条回答 默认 最新

  • dqyknf4423 2015-02-04 21:47
    关注

    try to push all items into uniquq array and count it with array_count_values() :

    <?php
    $array=$allNumberArray; //your Array
    
    $new_arr=array();
    foreach($array as $key=>$value){
        foreach ($value as $key2 => $value2) {
            array_push($new_arr,$value2);
            }
    }
    $last_arr=array_count_values($new_arr);
    foreach ($last_arr as $key3 => $value3) {
        echo $key3.' is '.$value3.' times<br>';
        }
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵