• This repository has been archived on 08/Jan/2019
  • Stars
    star
    373
  • Rank 110,537 (Top 3 %)
  • Language
    PHP
  • License
    MIT License
  • Created about 11 years ago
  • Updated over 5 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Provides functionality for array_column() to projects using PHP earlier than version 5.5.

array_column() for PHP

Build Status Coverage Status Latest Stable Version Total Downloads Latest Unstable Version License

This simple library provides functionality for array_column() to versions of PHP earlier than 5.5. It mimics the functionality of the built-in function in every way.

Usage

array array_column(array $input, mixed $columnKey[, mixed $indexKey])

Given a multi-dimensional array of data, array_column() returns the values from a single column of the input array, identified by the $columnKey. Optionally, you may provide an $indexKey to index the values in the returned array by the values from the $indexKey column in the input array.

For example, using the following array of data, we tell array_column() to return an array of just the last names, indexed by their record IDs.

<?php
$records = array(
    array(
        'id' => 2135,
        'first_name' => 'John',
        'last_name' => 'Doe'
    ),
    array(
        'id' => 3245,
        'first_name' => 'Sally',
        'last_name' => 'Smith'
    ),
    array(
        'id' => 5342,
        'first_name' => 'Jane',
        'last_name' => 'Jones'
    ),
    array(
        'id' => 5623,
        'first_name' => 'Peter',
        'last_name' => 'Doe'
    )
);

$lastNames = array_column($records, 'last_name', 'id');

If we call print_r() on $lastNames, you'll see a resulting array that looks a bit like this:

Array
(
    [2135] => Doe
    [3245] => Smith
    [5342] => Jones
    [5623] => Doe
)

Installation

The easiest way to install this library is to use Composer:

php composer.phar require ramsey/array_column

Then, when you run composer install, everything will fall magically into place, and the array_column() function will be available to your project, as long as you are including Composer's autoloader.

However, you do not need Composer to use this library.

This library has no dependencies and should work on older versions of PHP. Download the code and include src/array_column.php in your project, and all should work fine.

When you are ready to run your project on PHP 5.5, everything should continue to run well without conflicts, even if this library remains included in your project.

More Repositories

1

uuid

โ„๏ธ A PHP library for generating universally unique identifiers (UUIDs).
PHP
12,301
star
2

collection

๐Ÿ—‚๏ธ A PHP library for representing and manipulating collections.
PHP
1,051
star
3

uuid-doctrine

โ„๏ธ๐Ÿ—„๏ธ Allow the use of a ramsey/uuid UUID as Doctrine field type.
PHP
874
star
4

php-library-starter-kit

๐Ÿ—๏ธ A tool to quickly set up the base files of a PHP library project.
PHP
238
star
5

composer-install

๐ŸŽ A GitHub Action to streamline installation of PHP dependencies with Composer.
Shell
215
star
6

conventional-commits

๐Ÿช€ A PHP library for creating and validating commit messages according to the Conventional Commits specification. Includes a CaptainHook plugin!
PHP
174
star
7

composer-repl

๐Ÿš A REPL for PHP built into Composer (using PsySH)
97
star
8

macos-vagrant-box

Scripts to generate Vagrant boxes for macOS
Shell
96
star
9

devtools

๐Ÿงฐ A Composer plugin to aid PHP library and application development.
64
star
10

uuid-console

A console application for generating UUIDs with ramsey/uuid.
PHP
39
star
11

identifier

A PHP library for generating and working with identifiers, including UUIDs, ULIDs, and Snowflakes
PHP
38
star
12

vagrant-php-src-dev

Uses Vagrant to provision a basic virtual environment for hacking on the PHP core.
Puppet
37
star
13

jenkins-php

A meta package for the PHP Quality Assurance Toolchain tools required by the Template for Jenkins Jobs for PHP Projects, http://jenkins-php.org/
35
star
14

php-rfcs

PHP
34
star
15

http-range

A PHP library for parsing and handling HTTP range requests.
PHP
30
star
16

laravel-oauth2-instagram

A Laravel 5 service provider for league/oauth2-instagram
PHP
29
star
17

beatles

The Beatles programming language
24
star
18

devtools-lib

๐Ÿงฐ๐Ÿ“š The library behind ramsey/devtools, allowing for extension of the ramsey/devtools Composer plugin.
PHP
21
star
19

twig-codeblock

Syntax highlighting for Twig with the {% codeblock %} tag.
PHP
19
star
20

oauth2-example

Full Laravel source application for example in "Mastering OAuth 2.0" articles and talks.
PHP
17
star
21

vnderror

application/vnd.error builder/formatter for PHP 5.3+
PHP
17
star
22

php-museum-exhibits

HTML
15
star
23

ext-ecma_intl

A PHP implementation of the ECMAScript 2023 Internationalization API Specification (ECMA-402)
C
9
star
24

gitea-environment

Shell
9
star
25

math

This package is abandoned. Try brick/math instead: https://github.com/brick/math
PHP
8
star
26

dotfiles

The dotfiles I use on my systems
Vim Script
8
star
27

coding-standard

๐Ÿงผ A common coding standard for @ramsey's PHP libraries.
PHP
7
star
28

pdo_oci8

PHP userspace classes for Oracle to mimic the PDO interface while wrapping the oci8 functions.
PHP
7
star
29

str-begins-ends

Provides functions to test whether a string begins or ends with a certain substring.
PHP
5
star
30

rhumsaa-uuid

NO LONGER MAINTAINED. Use ramsey/uuid instead.
PHP
5
star
31

jupyter-php-docker

Dockerfile
4
star
32

MantisBT-HipChat

HipChat integration for Mantis bug tracker
PHP
3
star
33

sculpin-codeblock

A Sculpin bundle for using the ramsey/twig-codeblock extension for defining blocks of code for syntax highlighting (with Pygments) and more.
PHP
2
star
34

php-icu-testing

Dockerfile
2
star
35

http2-php-playground

PHP
2
star
36

uuid-benchmark

Benchmark tests for ramsey/uuid
PHP
2
star
37

website

My personal website and blog
PHP
2
star
38

docker-pennmush

A Docker image for PennMUSH, a MUD-style server.
Shell
2
star
39

docker-jupyter-php

Shell
2
star
40

composer-repl-lib

๐Ÿš๐Ÿ“š The library behind ramsey/composer-repl, allowing for extension of the ramsey/composer-repl Composer plugin and non-plugin use of the repl command.
PHP
2
star
41

composer-plugin-issue

This repo illustrates a problem I discovered with using Composer plugins.
1
star
42

gimmebutton

A Gimme Bar toolbar button for Firefox
Shell
1
star
43

api-toolbox

Examples used in my "A Toolbox for APIs & Integrations" presentation.
PHP
1
star
44

base

Arbitrary base conversion and encoding/decoding for all the bases that are belong to us.
PHP
1
star
45

matrix-environment

Shell
1
star