如何使用 Kannel 发送通用短信
我使用这个方法,现在工作正常,
$url = "http://localhost:13013/cgi-bin/sendsms?username=tester&password=foobar&to=".$number."&text=Send";
$urloutput=file_get_contents($url);
当我将 $text 连接到文本参数时它不起作用!
$url = "http://localhost:13013/cgi-bin/sendsms?username=tester&password=foobar&to=".$number."&text="." ".$text."lol'";
我不确定这是 kannel 问题还是 php 问题!因为连接 $number 效果很好! 我在 Linux 和 Xampp 上使用 CakePHP 1.3
I use this Method, and it works fine
$url = "http://localhost:13013/cgi-bin/sendsms?username=tester&password=foobar&to=".$number."&text=Send";
$urloutput=file_get_contents($url);
now it doesn't work when i concatenate $text to the text parameter!
$url = "http://localhost:13013/cgi-bin/sendsms?username=tester&password=foobar&to=".$number."&text="." ".$text."lol'";
I'm not sure if this is a kannel issue or php issue ! since concatenating $number works just fine !
I'm using CakePHP 1.3 on Linux and Xampp
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用urlencode():
Try using urlencode():