如何在php

时间:2019-07-30 06:35:51

标签: php php-7

$classType数组我正在存储类明智的类型,如具有类型A的类1和具有类型2的类2以及具有类型B的类3

$clollege['studentDetails']数组我想根据类从$classType数组中推送类型,什么是类型

$clollege['studentDetails']等级和$classType等级都是相同的。

  

预期产量

Array
(
    [0] => Array
        (
            [grade] => 2
            [hobbies] => Array
                (
                    [0] => A
                    [1] => B
                )
        [type] => A

        )

    [1] => Array
        (
            [grade] => 2
            [hobbies] => Array
                (
                    [0] => A
                )
           [type] => A

        )

    [2] => Array
        (
            [grade] => 3
            [hobbies] => Array
                (
                    [0] => C
                )
        [type] => A

        )

我已尝试但未解决我的预期答案,很高兴有人回答了我,我已在下面的部分中发布了我的代码。我知道这是一个简单的问题,如果有人发布您的信息,以便我可以从这里学习

  

我的代码

<?php
$classType = [
    ["class" => "1", "type" => "A"],
    ["class" => "2", "type" => "A"],
    ["class" => "3", "type" => "B"]
];

$clollege['studentDetails'] = [
   ["grade" => "2", "hobbies" => ["A" , "B"] ],
   ["grade" => "2", "hobbies" => ["A" ] ],
   ["grade" => "3", "hobbies" => [ "C" ] ]
];

foreach ($classType as $item) {
        $clollege['studentDetails'][$item['class']]['type'] = $item['type'];
}

echo "<pre>";
print_r($clollege['studentDetails']);exit;
?>
  

更新代码部分

$studentList['studentDetails'] = [
    [ "group" => ["id" => 1 , "grade" => "2"] ],
    [ "group" => ["id" => 2 , "grade" => "2", ] ],
    [ "group" => [ "id" => 3, "grade" => "3"] ]
];

2 个答案:

答案 0 :(得分:1)

您可以在array_walk()的帮助下尝试以下方式。

$classType = [
    ["class" => "1", "type" => "A"],
    ["class" => "2", "type" => "A"],
    ["class" => "3", "type" => "B"]
];

$clollege['studentDetails'] = [
    ["grade" => "2", "hobbies" => ["A" , "B"] ],
    ["grade" => "2", "hobbies" => ["A" ] ],
    ["grade" => "3", "hobbies" => [ "C" ] ]
];

$classType = array_column($classType, 'type', "class");
array_walk($clollege['studentDetails'], function(&$item) use($classType) {
    $item['type'] = $classType[$item['grade']];
});

echo '<pre>';
print_r($clollege['studentDetails']);
echo '</pre>';

工作demo

答案 1 :(得分:1)

您不能在单个或子数组元素中两次使用grade作为键,我已经提到了使用type索引的解决方案。

您可以将foreacharray_reduce一起使用

 foreach($clollege['studentDetails'] as $key => &$val){
    $grade       = $val['grade'];
    $val['type'] = array_reduce($classType, function($r, $item) use ($grade){
      return ($item['class'] == $grade) ? $item['type'] : $r;
    }); 
  }
  print_r($clollege);

更新

更改代码

$grade = $val['grade'];

$grade = $val['group']['grade'];

如果两种情况都有机会使用,则

$grade  = isset($val['group']['grade']) ? $val['group']['grade'] : $val['grade'];

工作演示:https://3v4l.org/5HGLk