如何向多個聯繫人發送短信並獲取每個聯繫人的結果碼。它不工作。我只打開'數字'字符串中的最後一個數字,而不是全部。如何向多個聯繫人發送短信
我在做什麼錯?
在我的控制器,
foreach ($sendarraystudent as $studentid) {
//$i++;
$student = Student::model()->findByPk($studentid);
$name = $student->student_firstname . " " . $student->student_middlename . " " . $student->student_lastname;
$smobile = $student->student_mobile;
//$mobilelist = $mobilelist . ',' . $smobile;
$msg1 = $msg;
$msg1 = str_replace("#course#", $course->course_name, $msg);
$msg1 = str_replace("#batch#", $batch->batch_name, $msg1);
$msg1 = str_replace("#name#", $name, $msg1);
$this->sendbulk($smobile, $msg1);
}
protected function sendbulk($mobilenum, $message) {
$no = $mobilenum;
$msg = $message;
$link = "http://url/api/v3/index.php?method=sms&api_key=A6xxxxxxxxxxx&to=" . $no . "&sender=xxxxxx&message=" . $msg . "&unicode=xxx";
header('Location: ' . $link) and exit;
}
我想整合kapsystem短信網關。我正在閱讀API文檔。每個示例調用中都有'URL'。但是URL是什麼?沒有提及它。是URL =「http://trans.kapsystem.com」還是別的?請幫幫我。 –
是的,URL的意思就像「trans.kapsystem.com」(短信網關網址) – Arya