2012-07-03 62 views

回答

0

發送短信您可以在您的網站中集成一些SMS服務,例如CellTrust,您將能夠發送短信。我不喜歡的是,smiler任務....

public function smsSend($number,$temppwd) 
{ 
      $curl = curl_init(); 
      curl_setopt($curl, CURLOPT_URL,"https://gateway.celltrust.net/TxTNotify/TxTNotify?"); 
      curl_setopt($curl, CURLOPT_POSTFIELDS, "Username=xxxxx&Password=xxxx&CustomerNickname=xxxxxx&PhoneDestination=".$number."&%20CarrierId%20=5&Message=Hello, Your verification code is: ".$temppwd.". Thank you&XMLResponse=true"); 
      curl_setopt($curl, CURLOPT_HEADER, TRUE); 
      curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE); 
      $head=curl_exec ($curl); 
      $httpCode = curl_getinfo($curl, CURLINFO_HTTP_CODE); 
}