This repository was archived by the owner on Jan 8, 2019. It is now read-only.

Description
It would be great if the function could return the original index of the row.
Example:
$array = array(
'key' => array(
'element' => 'value'
)
);
// Returns array('key' => 'value')
array_column($array, 'element', true);
I know it only mimics the core function, but still would be a great feature.