“Erstellen Sie mehrdimensionales Array mit Foreach JavaScript” Code-Antworten

Erstellen Sie mehrdimensionales Array mit Foreach JavaScript

Array
(
    [low] => Array
        (
            [0] => fat_low
            [1] => quantity_low
            [2] => ratio_low
            [3] => label_low
        )

    [medium] => Array
        (
            [0] => fat_medium
            [1] => quantity_medium
            [2] => ratio_medium
            [3] => label_medium
        )

    [high] => Array
        (
            [0] => fat_high
            [1] => quantity_high
            [2] => ratio_high
            [3] => label_high
        )

)
Precious Pygmy

Erstellen Sie mehrdimensionales Array mit Foreach JavaScript

$levels = array('low', 'medium', 'high');
$attributes = array('fat', 'quantity', 'ratio', 'label');

foreach ($levels as $key => $level):
       foreach ($attributes as $k =>$attribute):
             $variables[$level][] = $attribute . '_' . $level; // changed $variables[] to $variables[$level][]
       endforeach;
endforeach;

echo '<pre>' . print_r($levels,1) . '</pre>';   
echo '<pre>' . print_r($variables,1) . '</pre>';
Precious Pygmy

Ähnliche Antworten wie “Erstellen Sie mehrdimensionales Array mit Foreach JavaScript”

Fragen ähnlich wie “Erstellen Sie mehrdimensionales Array mit Foreach JavaScript”

Weitere verwandte Antworten zu “Erstellen Sie mehrdimensionales Array mit Foreach JavaScript” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen