我希望将结果发送给学校的学生。我已经在mysql数据库中有结果和每个学生的电话号码。从我的小研究中,我发现curl是发送url短信的最有效方式。为了将结果发送给每个学生,我使用while循环选择每个学生电话和结果与数据库表(结果)中的考试名称。现在,问题是只发送一条消息。我已经尝试过再次检查代码,但找不到任何内容。请问我该如何解决这个问题?以下是我的代码:
class SendSMS
{
private $url = 'http://www.domain.com/http/index.aspx?account=acct&password=pwd';
function __construct()
{
}
// public function to commit the send
public function send($message,$recipient)
{
$url_array= array(
'message'=>$message,
'sendto'=>$recipient
);
$url_string = $data = http_build_query($url_array, '', '&');
// we're using the curl library to make the request
$curlHandle = curl_init();
curl_setopt($curlHandle, CURLOPT_URL, $this->url);
curl_setopt($curlHandle, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curlHandle, CURLOPT_POSTFIELDS, $url_string);
curl_setopt($curlHandle, CURLOPT_POST, 1);
$responseBody = curl_exec($curlHandle);
$responseInfo = curl_getinfo($curlHandle);
curl_close($curlHandle);
return $this->handleResponse($responseBody,$responseInfo);
}
private function handleResponse($body,$info)
{
if (substr($body, 0, 2) == "OK"){ // successful submission
$_SESSION['success'] = "[$body]: Your SMS(s) have been sent";
return true;
}
else{
$_SESSION['error'] = "An error has occurred: [$body].";
// error handling
return false;
}
}
}
下面是发送多条消息的while循环:
$sql = mysqli_query($conn, "SELECT * FROM result_table WHERE exam='".$_POST['examName']."'") or die(mysqli_error($conn));
$std = mysqli_fetch_assoc($sql);
while ($std = mysqli_fetch_array($std_query)) {
$recipient = $std['parent_phone'];
$sms = new SendSMS();
$sms->send($msssg,$recipient,"header");
}
答案 0 :(得分:1)
使用curl_close($curlHandle);
关闭连接。因此...
1。)将MySQL查询中所有信息的数组/对象传递给函数。
2.打开卷曲连接。
3。)循环迭代并执行所有操作。
4.关闭连接。
最好再看看curl-multi,这不是每次都没有,所以应该让你获得更好的吞吐量。 http://php.net/manual/en/function.curl-multi-init.php