作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
string(36) "newyork" ["categoryid"]=> string(1) "4" } -6ren">
我有一个数组如下
array(2) { ["name"]=> string(36) "newyork" ["categoryid"]=> string(1) "4" }
array(2) { ["name"]=> string(24) "michigun" ["categoryid"]=> string(1) "4" }
array(2) { ["name"]=> string(27) "canada" ["categoryid"]=> string(1) "5" }
array(2) { ["name"]=> string(35) "manhatten" ["categoryid"]=> string(1) "5"
}
我想要一个新的数组,我将在其中放置
{"4" => newyork,michigun}
{"5" => canada,manhatten}
.. 怎么办?请帮忙。
最佳答案
您可以使用循环并构建数组 -
$new = array();
foreach($your_array as $array) {
if(array_key_exists($array['categoryid'], $new)) { // if categoryid is already set the concatenate the name
$new[$array['categoryid']] = $new[$array['categoryid']] . ',' . $array['name'];
} else { // set the name
$new[$array['categoryid']] = $array['name'];
}
}
关于php - 如何在php中映射一个数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31692240/
我是一名优秀的程序员,十分优秀!