简体   繁体   English

排序多维数组PHP

[英]Sort multidimensional array PHP

from styles array : 从样式数组:

Array
(
    [0] => style1|000000
    [1] => style2|ff6600
)

i made this this loop 我做了这个循环

foreach($styles as $key=>$value){
    $sort_values[] = explode('|',$value);
}

** and with print_r($sort_values)I get:** **和print_r($ sort_values)我得到:**

Array
(
    [0] => Array
        (
            [0] => style1
            [1] => 000000
        )

    [1] => Array
        (
            [0] => style2
            [1] => ff6600
        )

)

But I need it to be : 但我需要它是:

Array
(
    [styles] => Array
        (
            [0] => style1
            [1] => style2
        )

    [links] => Array
        (
            [0] => 000000
            [1] => ff6600
        )

)

any help is appreciated thank you! 任何帮助表示感谢,谢谢!

Assuming your input array looks like 假设您的输入数组看起来像

array('style1|000000','style2|ff6600', 'style3|22ff22')

You need a little more logic in your loop. 您的循环中需要更多逻辑。

// Initialize output array with an empty styles subarray and a links subarray
$out = array('styles'=>array(), 'links'=>array());
foreach ($styles as $key=>$value) {
   // Loop over and split on the |
   list($style, $link) = explode("|", $value);
   // And append the two resultant values to their respective subarrays via []
   $out['styles'][] = $style;
   $out['links'][] = $link;

   // list() is a useful construct for producing readable results with small arrays,
   // but I could also have used an array to receive the 
   // results of explode()
   // $split = explode("|", $value);
   // $out['styles'][] = $split[0];
   // $out['links'][] = $split[1];

}
print_r($out);

// Prints:
Array
(
    [styles] => Array
        (
            [0] => style1
            [1] => style2
            [2] => style3
        )

    [links] => Array
        (
            [0] => 000000
            [1] => ff6600
            [2] => 22ff22
        )

)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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