简体   繁体   中英

Change the array structure in php

How can i change the test1 array format as like in test2?

$test1 = array(
    'size'=>array('V'=>array('V'),'R'=>array('R','R')),
    'price'=>array('V'=>array('77'),'R'=>array('88','99')),
    'unit'=>array('V'=>array('3'),'R'=>array('3','2')),
    'color'=>array('V'=>array('Black'),'R'=>array('Green','Red')));

$test2 = array(
    'size'=>array('V','R'),
    'price'=>array('V'=>array('Black'=>'77'),
                   'R'=>array('Green'=>'88','Red'=>'99')),
    'unit'=>array('V'=>array('Black'=>'3'),
                  'R'=>array('Green'=>'3','Red'=>'2')),
    'color'=>array('V'=>array('Black'),'R'=>array('Green','Red')));

Thanks!

With a foreach loop you can change the array structure. http://php.net/manual/de/control-structures.foreach.php Something like that should work: its pretty unclear what the rules are to convert from one array to the other in your case.

$test2 = array();
foreach ($test as $type => $array) {
    $newArray = array();
    foreach ($array as $key => $value) {
        if ($key == 'V') {
            if ($value == 3) {
                $newArray['V'] = array('Black' => 3);
            } else if ($value = 2) {
                $newArray['V'] = array('Green' => 2);
            }
        } else if ($key == 'R') {
            //....
        }
    }
    $test2[$type] = $newArray;
}

Thanks for the response. and sorry for not being more specific. Actually i wanted all the values in dynamic manner. I constructed a loop :). Thanks!

$myArray = array();
foreach($test as $type => $array){
    $k = 0;
    foreach ($array as $key => $value) {
    if($type == 'size'){
        $myArray['size'][] = $key;
    }else if($type == 'price' || $type == 'unit' ){ 
        $m = 0;
        foreach($value as $vall){
            if($type == 'price'){
                $myArray['price'][$myArray['size'][$k]][$test['color'][$myArray['size'][$k]][$m]] = $test['price'][$myArray['size'][$k]][$m];
            }else if($type == 'unit'){
                $myArray['unit'][$myArray['size'][$k]][$test['color'][$myArray['size'][$k]][$m]] = $test['unit'][$myArray['size'][$k]][$m];
            }
            $m++;
        }
    }else if($type == 'color'){
        $myArray['color'][] = $value;
    }
    $k++;
}
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM