数组纵向切片,有内置函数吗
Jun 23, 2016 pm 02:02 PM 一个数组,有很多键,key1, key2, ...
我想根据一个key 来生成一个新的数组, 就是抽取特定键的所有值组成一个数组.
PHP里有内置函数吗?
这个很常用. 我感觉应该有内置方法.
就是针对数组的一个键,纵向切片.
就是实现以下功能
if(count($arr) > 0) {
foreach($arr as $v) {
array_push($newArr, $v['key1']);
}
}
有内置方法吗
回复讨论(解决方案)
就是针对一个键, 然后把这个键下的值都取出来,组成一个新数组
显然你指的是二维数组了
php 的数组是巢状的,并不是传统意义的数组。所以不可能预知你的操作而内置函数
只有自己遍历解决
一般情况下,数组的来源是数据库查询
在读取查询数据时就已经构造好了需要的数组,因此也没有必要对数组做转置处理
如果想使代码优雅易读一些,可以使用SPL提供的迭代器
但效率不一定会比自写一个遍历快
遍历一下就出来了,就几行代码,也不复杂。

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

11 Best PHP URL Shortener Scripts (Free and Premium)

Working with Flash Session Data in Laravel

Build a React App With a Laravel Back End: Part 2, React

Simplified HTTP Response Mocking in Laravel Tests

cURL in PHP: How to Use the PHP cURL Extension in REST APIs

12 Best PHP Chat Scripts on CodeCanyon
