如何获取数组中键的名称

时间:2016-03-30 02:02:04

标签: php arrays implode array-unique array-key

这听起来很简单,但我无法使其发挥作用。我正在尝试使用相同的值对键进行分组。我可以得到密钥号但我不能得到密钥的名称。即“伦敦,柏林”。 这是我的代码:

$countries = array (
   'London' => 'Europe/London',
   'Istanbul' => 'Europe/Istanbul',
   'Rome' => 'Europe/Rome',
   'Berlin' => 'Europe/Berlin',
   'Athens' => 'Europe/Athens',
);


$offsets = Array();
foreach ($countries as $country_offset) {
   $offset = timezone_offset_get( new DateTimeZone( $country_offset ), new DateTime() );

   array_push($offsets, $offset);
}

$result = array_unique($offsets);
asort($result);

$keys = array_keys($result);
foreach($keys as $key) {
   $numb = array_keys($offsets, $offsets[$key]);

   echo $offsets[$key] . ' - ' . implode(', ', $numb ) . '<br>';
}

2 个答案:

答案 0 :(得分:2)

我建议首先创建包含所需键的完整信息数组,而不是创建映射原始输入键的表示。

点子:

$offsets = array(); // initialize
foreach($countries as $key => $country_offset) { // grouping
    $offset = timezone_offset_get( new DateTimeZone( $country_offset ), new DateTime() );
    $offsets[$offset][] = array(
        'name'      => $key, // include me instead!
        'offset'    => $offset,
        'timezome'  => $country_offset,
    );
}
ksort($offsets); // sort

这里重要的一点是,使用偏移量作为关键字将它们分组到容器中:

$offsets[$offset][] = array(
//       ^ reassignment grouping using the offset as key

然后,在您的演示文稿中,决定您想要的内容:

// presentation
foreach($offsets as $offset => $info) {
    echo $offset . ' - ';
    $temp = array();
    foreach($info as $t) {
        $temp[] = $t['name'];
    }
    echo implode(', ', $temp);
    echo '<br/>';
}

如果array_column可用,请使用它:

foreach($offsets as $offset => $info) {
    echo $offset . ' - ' . implode(', ', array_column($info, 'name')) . '<br/>';
}

Sample Output

答案 1 :(得分:1)

 <?php
$countries = array (
   'London' => 'Europe/London',
   'Istanbul' => 'Europe/Istanbul',
   'Rome' => 'Europe/Rome',
   'Berlin' => 'Europe/Berlin',
   'Athens' => 'Europe/Athens',
);

$out=array();
foreach ($countries as $country_offset=>$c) {
   $offset = timezone_offset_get( new DateTimeZone( $c ), new DateTime() );


$out[$offset][]=$country_offset;
}
//print_r($out);

foreach($out as $x=>$y){

echo $x.': '.implode(',',$y).'<br>';
}

//输出:

3600:伦敦 10800:雅典伊斯坦布尔
7200:柏林罗马