Home  >  Article  >  Backend Development  >  php 数组处理,用下面的值把上面的上标

php 数组处理,用下面的值把上面的上标

WBOY
WBOYOriginal
2016-06-13 11:10:54928browse

php 数组处理,用上面的值把下面的下标

我想把上面的值作为下面的键,杂整啊  (就是用上面的字段,作为下面的是值那种效果)
字段=》值 这样


------解决方案--------------------
http://www.w3school.com.cn/php/func_array_combine.asp
看 手 册
------解决方案--------------------
图太小,还不完整!实在看不清楚

需求描述的不清楚(补充说明也没有说清楚)


------解决方案--------------------
我老花,看不清楚你的数组要怎样匹配,只能说最简单的

引用:
引用:array_combine()
我下面还有跟多  我只是上图上了这点。。。我想取的是第0个元素的值做后面的键值

------解决方案--------------------
$output = array();
foreach ($array as $k=>$v) {
if $k==0 continue;
$output[]= array_combine($array[0], $v) ;
}
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn