Skip to content

Instantly share code, notes, and snippets.

View akadata's full-sized avatar
🎯
Focusing

Andrew Smalley akadata

🎯
Focusing
View GitHub Profile
@debuss
debuss / arrayColumn.php
Last active February 2, 2021 01:29
Implementation of array_column function for PHP 5.3+, support for array of objects is also provided.
<?php
/**
* Implementation of array_column function for PHP 5.3+, support for array of objects is also provided.
*
* @param array $input
* @param mixed $column_key
* @param mixed $index_key
* @return array
* @see http://php.net/manual/en/function.array-column.php