$arr_users = [] ; | $arr_users = [] ; | ||||
foreach($users as $u) { | foreach($users as $u) { | ||||
if(isset($u->email)) | |||||
$arr_users[] = $u->email ; | |||||
if(isset($u['email'])) | |||||
$arr_users[] = $u['email'] ; | |||||
} | } | ||||
return $this->render('liste_mails', [ | return $this->render('liste_mails', [ |