У меня есть метод, который создает объекты sms из номеров пользователей в foreach l oop
$phones = "3444425,455667"; //get phone numbers from textarea
$phones = chop($phones,","); //remove last comma
$phones = multiexplode(array(","," ","\r\n",".","|",":"),$phones); //reformat and convert to array
$message = "foobar foo"; // get the message from form field
//**loop through phone numbers from form field and reformat */
foreach($phones as $phone){
//create multiple Sms Object(s)
$sms = new Sms($sender, $phone, $message, "18");
} //close loop
Как я могу передать sms-объекты из l oop в мою функцию, как это
$response = $instance->sendBatchSMS($sms1,$sms2,$sms3,etc);
а не
$response = $instance->sendBatchSMS($sms1);
$response = $instance->sendBatchSMS($sms2);
$response = $instance->sendBatchSMS($sms3);