Table of Contents
回复讨论(解决方案)
Home Backend Development PHP Tutorial 数组纵向切片,有内置函数吗

数组纵向切片,有内置函数吗

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提供的迭代器
但效率不一定会比自写一个遍历快

遍历一下就出来了,就几行代码,也不复杂。

Statement of this Website
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

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

11 Best PHP URL Shortener Scripts (Free and Premium) 11 Best PHP URL Shortener Scripts (Free and Premium) Mar 03, 2025 am 10:49 AM

11 Best PHP URL Shortener Scripts (Free and Premium)

Introduction to the Instagram API Introduction to the Instagram API Mar 02, 2025 am 09:32 AM

Introduction to the Instagram API

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Working with Flash Session Data in Laravel

Build a React App With a Laravel Back End: Part 2, React Build a React App With a Laravel Back End: Part 2, React Mar 04, 2025 am 09:33 AM

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

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Simplified HTTP Response Mocking in Laravel Tests

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

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

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

12 Best PHP Chat Scripts on CodeCanyon

Notifications in Laravel Notifications in Laravel Mar 04, 2025 am 09:22 AM

Notifications in Laravel

See all articles