Home  >  Article  >  php教程  >  Google Voice 短信发送接口PHP开源版(2010.5更新)

Google Voice 短信发送接口PHP开源版(2010.5更新)

WBOY
WBOYOriginal
2016-06-06 20:34:411602browse

Google Voice 短信发送接口PHP开源版,以前的版本不能用了,作者于2010年5月进行了更新。

1,支持群发
2,网站空间,中文转成拼音发送
如果需要群发多帐号用英文逗号(,)分隔(86159..,86159..),消息内容不支持中文,香港虚拟主机,当您输入中文的时候系统会自动转换为拼音(为了区分是拼音,拼音首字母大写),保证消息能正常发送(输入”我是旋风”短信内容为”Wo Shi Xuan Feng”).

复制代码 代码如下:


/*
提示:如果需要群发多帐号用英文逗号(,)分隔(86159..,86159..),消息内容不支持中文,
当您输入中文的时候系统会自动转换为拼音(为了区分是拼音,网站空间,拼音首字母大写),
保证消息能正常发送(输入"我是旋风"短信内容为"Wo Shi Xuan Feng")
所需PHP扩展:curl 。字符编码均为GBK(考虑拼音转换)
*/
//引入拼音转换需要文件
include("libs/pinyin.php");
include "libs/googlevoice.class.php";
#设置google voice 帐号密码
$username="username@gmail.com";
$password="password";
//接受号码,多号码用","分隔(86159..,86159..)
$sendto ="8615900000000,8613400000000";
//消息内容
$message = "I am from heqee.com";
/*
转换中文为拼音程序自动识别中文进行替换,
此功能个人认为纯属娱乐,可以根据实际情况决定是否添加.
*/
//$message = zh2pinyin($message);
//实例化(必须)
$sms = new GoogleVoice($username,$password);
//返回结果
//Text sent to 86134...
echo $sms ->send($sendto,$message);
?>


源码库打包下载/201007/yuanma/GoogleVoiceApi.rar
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn