Heim  >  Artikel  >  Backend-Entwicklung  >  这个数组怎么拆?

这个数组怎么拆?

WBOY
WBOYOriginal
2016-06-06 20:43:251188Durchsuche

<code>Array ( [0] => Array ( [country] => 越南 [dausum] => 300 ) [1] => Array ( [country] => 中国 [dausum] => 500 ) [2] => Array ( [country] => 香港 [dausum] => 600 ) )
</code>

这个大数组拆成

<code> $country=('越南','中国','香港');
 $data=('越南'=>'300','中国'=>300,'香港'=>'600);
</code>

回复内容:

<code>Array ( [0] => Array ( [country] => 越南 [dausum] => 300 ) [1] => Array ( [country] => 中国 [dausum] => 500 ) [2] => Array ( [country] => 香港 [dausum] => 600 ) )
</code>

这个大数组拆成

<code> $country=('越南','中国','香港');
 $data=('越南'=>'300','中国'=>300,'香港'=>'600);
</code>

<code class="lang-php">$arr = 
[
  ['country' => '越南', 'dausum' => 300],
  ['country' => '中国', 'dausum' => 500],
  ['country' => '香港', 'dausum' => 600]
];

$country = $data = array();
foreach($arr as $elem)
{
  $country[] = $elem['country'];
  $data[$elem['country']] = $elem['dausum'];
}
</code>

<code>$arr = 
[
  ['country' => '越南', 'dausum' => 300],
  ['country' => '中国', 'dausum' => 500],
  ['country' => '香港', 'dausum' => 600]
];

$country = array_column($arr, 'country');
$data = array_combine($country, array_column($arr, 'dausum'));
</code>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn