卷曲到sms提供程序循环数据库

时间:2012-02-08 17:19:01

标签: php mysql curl

我有一个数字数据库,我想使用sms提供程序发送短信。我的代码和sms api在一起,我作为一个新手的问​​题是他们的代码是单个短信我想循环我的数据库并通过curl发布我的数据库中的每个数字。

任何帮助真的很感激。

$result = mysql_query($stremail);
$emails = array();
while ($row = mysql_fetch_array($result)) {
$recipient =  $row['mobilenumber1'];

class SendSMS
{
private $url = 'http://'; // url of the service
private $username = ''; // 
private $password = ''; // 

private $message_id,$credits_used;

function __construct()
{

}

public function getMessageID()
{
    return $this->message_id;
}

public function getCreditsUsed()
{
    return $this->credits_used;
}


// public function to commit the send
public function send($message,$recipient,$originator)
{
    $url_array= array('message'=>$message,'mobile_number'=>$recipient,'originator'=>$originator,'username'=>$this->username, 'password'=>$this->password);
    $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 ($info['http_code']==200){ // successful submission
        $xml_obj = simplexml_load_string($body);
        // extract message id and credit usuage
        $this->message_id = (int) $xml_obj->message_id;
        $this->credits_used = (int) $xml_obj->credits_used;
        return true;
    }
    else{

        $this->message_id = null;
        $this->credits_used = null;

        // error handling
        return false;
    }

}

}
$sms = new SendSMS();
$sms->send($message1,$recipient,"header");
echo "sent!";


}

2 个答案:

答案 0 :(得分:1)

class SendSMS
{
    private $url = 'http://'; // url of the service
    private $username = ''; // 
    private $password = ''; // 

    private $message_id,$credits_used;

    function __construct()
    {

    }

    public function getMessageID()
    {
        return $this->message_id;
    }

    public function getCreditsUsed()
    {
        return $this->credits_used;
    }


    // public function to commit the send
    public function send($message,$recipient,$originator)
    {
        $url_array= array('message'=>$message,'mobile_number'=>$recipient,'originator'=>$originator,'username'=>$this->username, 'password'=>$this->password);
        $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 ($info['http_code']==200){ // successful submission
            $xml_obj = simplexml_load_string($body);
            // extract message id and credit usuage
            $this->message_id = (int) $xml_obj->message_id;
            $this->credits_used = (int) $xml_obj->credits_used;
            return true;
        }
        else{

            $this->message_id = null;
            $this->credits_used = null;

            // error handling
            return false;
        }

    }

}

$sms = new SendSMS();

$result = mysql_query($stremail);

while ($row = mysql_fetch_array($result)) {

    $recipient = $row['mobilenumber1'];
    $sms->send($message1,$recipient,"header");

}

答案 1 :(得分:0)

如果您的短信服务提供商不允许您通过API接口发送批量短信,我建议您使用HQSMS.com短信服务。 在HQSMS代码中,您只需将变量$分配给以逗号分隔的更多数字。在单个POST请求中,最多可能有10000个号码。您可以在http://www.hqsms.com/help-api/https-api-interface/https-specification上找到更多详细信息和示例。 HQSMS.com是一家高质量的短信服务提供商,为您提供开放式有效性和全球覆盖范围。