Erstellen Sie eine Zuordnung (in Form eines Schlüsselwerts) aus einem mehrdimensionalen Array oder Array
Die Zuordnungsbeziehung wird durch Angabe des entsprechenden Schlüsselwerts oder Attributnamens über „$from“ und „$“ festgelegt zu" Parameter.
Natürlich können Sie auch eine weitere Gruppierungszuordnung basierend auf dem Gruppierungsfeld „$group“ durchführen.
Zum Beispiel:
$array = [ ['id' => '123', 'name' => 'aaa', 'class' => 'x'], ['id' => '124', 'name' => 'bbb', 'class' => 'x'], ['id' => '345', 'name' => 'ccc', 'class' => 'y'], ];
Das obige Array führt die folgende Methode aus
还可以添加第四个参数 $result = ArrayHelper::map($array, 'id', 'name', 'class');
Das Ergebnis ist
[ 'x' => [ '123' => 'aaa', '124' => 'bbb', ], 'y' => [ '345' => 'ccc', ], ]
Das Folgende ist eine Karte Detaillierter Code der Methode
/** * @paramarray $array * @param string|Closure $from * @param string|Closure $to * @param string|Closure $group * @return array */ public static function map($array, $from, $to, $group = null) { $result = []; foreach ($array as $element) { $key = static:: getValue($element, $from); $value = static:: getValue($element, $to); if ($group !== null) { $result[ static:: getValue($element, $group)][$key] = $value; } else { $result[$key] = $value; } } return $result; }
Das Obige ist der Inhalt der Yii2.0 ArrayHelper::map()-Methode. Weitere verwandte Inhalte finden Sie hier Achten Sie auf die chinesische PHP-Website (m.sbmmt.com)!