0

我想通过我的 php 页面发送短信。

我的 SMS 网关提供商给了我的 api,比如
http://sms.xyz.com/uname=abc&pass=xyz&phone=1234567890&msg=hello
(在浏览器中访问这个 url 会向电话号码发送一条短信)

我希望我的脚本只访问这个 url(以便发送短信)并返回到我自己的页面(不管结果如何)并打印“已发送消息”

请提出任何方法来做到这一点。

4

3 回答 3

2

利用cURL

<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://sms.xyz.com/uname=abc&pass=xyz&phone=1234567890&msg=hello");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // For HTTPS
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); // For HTTPS
curl_exec($ch);
$statusCode = curl_getinfo($ch, CURLINFO_HTTP_CODE); // Returns 200 if everything went well
if($statusCode==200)
{
echo "<script>alert('SMS Sent');</script>";
echo "<script>document.location.href='welcome.html'</script>"; //Redirecting back after successfully sent SMS
}
else
{ 
echo "<script>alert('SMS Sending Failed.');</script>";
}

curl_close($ch);
于 2013-11-12T07:42:44.143 回答
0

猜猜你在 JavaScript 中寻找“位置”。

http://www.w3schools.com/js/js_window_location.asp

于 2013-11-12T07:38:49.817 回答
0

除非 API 明确允许并且有类似 returnURL 变量的东西,否则您无法重定向回您的页面。

看看 PHP 中的 cURL。它将请求发送到其他网页,而不在浏览器中显示该页面。这样您就可以将用户留在您的页面上,而无需重定向他们。

于 2013-11-12T07:43:33.953 回答