可能重复:
来自 Web 应用程序的 SMS
任何人都可以建议我如何通过我的网站发送短信,这是一个很好的
您可以在您的网站中集成一些 SMS 服务,例如 CellTrust,您将能够发送 SMS。我就这样完成了微笑任务....
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);
}