这个数组怎么拆?

WBOY
发布: 2016-06-06 20:43:25
原创
1192 人浏览过

<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>
登录后复制
相关标签:
php
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板