如何实现短信网关api而无需访问其他网站

时间:2014-06-21 10:13:12

标签: php api sms

我正在使用这个api

http://bhashsms.com/api/sendmsg.php?user=success&pass=123456&sender=TESTTO&phone= $ mob& text =嗨你注册了很棒的skm& priority = ndnd& stype = normal

但我的问题是每当我通过电话和文字问题api不能自动工作。

如何在不点击的情况下执行此api,无需访问api网站。

1 个答案:

答案 0 :(得分:0)

对我来说,这听起来像是一个编码问题。尝试:

$url = urlencode($url);
$get = file_get_contents($url);
if($get === false){
    throw new Exception("Failed to connect to SMS API"); 
}
echo $get;