array_column
array_column copied to clipboard
Provides functionality for array_column() to projects using PHP earlier than version 5.5.
It would be great if you could pass in an array of objects, and the index key provided merely accessed one of the properties to be used when re-indexing the...
I'm trying to parse the following array **: ``` Array ( [data] => Array ( [0] => Array ( [id] => 78987967867 [created_time] => 2013-06-16T02:30:15+0000 ) [1] => Array (...
It would be great if the function could return the original index of the row. Example: ``` php $array = array( 'key' => array( 'element' => 'value' ) ); //...