短信在手机短信到手机

时间:2013-09-12 07:51:37

标签: php sms

有人可以使用任何免费网关提供有关如何使用11位电话号码而不是10位电话号码向手机发送短信的教程吗?

或者有什么方法可以使用开发自己的?

谢谢。

1 个答案:

答案 0 :(得分:5)

您需要 SMS API提供程序才能实现您的目标。 API Provider甚至为您提供了现成的PHP代码,用于调用其API。

此外,

查看 TextMagic 并且有一个包装器here

像这样的东西

$api = new TextMagicAPI(array(
    "username" => "your_user_name",
    "password" => "your_API_password", 
));

$text = "Hello world!";
$phones = array(9991234567);
$is_unicode = true;

$api->send($text, $phones, $is_unicode)