I am caught in a situation where I need to get values of a member variable of instances of an object which are in an array. Is there any way to use a function like array_map to get them in one line rather than using a foreach loop. Please see the code example below.
<?php
Class abc
{
public $aVar;
function __construct($Initialize)
{
$this->aVar = $Initialize;
}
};
$Array = array(new abc(10), new abc(20), new abc(30));
$Array2 = array();
foreach ($Array as $Element)
{
array_push($Array2, $Element->aVar);
}
print_r($Array2);
?>
Output is:
Array (
[0] => 10
[1] => 20
[2] => 30
)