Hey everyone so I am trying to loop through an existing array and then add data from that array into a new array if certain conditions are met. This is my current code but it does not work. I am not sure how to go about doing what I want to do.
$allClientArr = $authPartner->getmyClients();
foreach($allClientArr as $client){
if($client->get('status') == "AC"){
$clientArr += $client;
}
}
I am using elements of clientArr further down in my page.