1, support Mass
2, Chinese into pinyin send
If you need to bulk multi-account with a comma (,) delimited (86159..,86159.), the message content does not support Chinese, when you enter Chinese language, the system will automatically convert to pinyin (in order to distinguish between pinyin, pinyin initials), to ensure that the message can be sent normally (input "I am whirlwind" SMS content as "Wo Shi Xuan Feng ").
Copy the Code code as follows:
/*
Tip: If you need to bulk multiple accounts with a comma (,) delimited (86159..,86159.), the message content does not support Chinese,
When you type in Chinese, the system will automatically convert to pinyin (in order to distinguish between pinyin, the first letter capitalized),
Ensure that messages are sent normally (input "I am Whirlwind" SMS Content "Wo Shi Xuan Feng")
PHP extension Required: Curl. Character encodings are GBK (consider pinyin conversion)
*/
Introducing Pinyin conversion requires a file
Include ("libs/pinyin.php");
Include "libs/googlevoice.class.php";
#设置google Voice account password
$username = "username@gmail.com";
$password = "password";
Accept numbers, multiple numbers, separated by "," (86159..,86159.)
$sendto = "8615900000000,8613400000000";
Message content
$message = "I am from heqee.com";
/*
Convert Chinese to Pinyin program to automatically identify Chinese to replace,
This feature is considered purely entertainment, and can be determined by the actual situation.
*/
$message = Zh2pinyin ($message);
Instantiation (required)
$sms = new Googlevoice ($username, $password);
return results
Text sent to 86134 ...
echo $sms->send ($sendto, $message);
?>
Source Library Package Download/201007/yuanma/googlevoiceapi.rar
The above describes the Google Voice Google Voice text messaging interface PHP Open source version 20105 update, including Google Voice content, I hope that the PHP tutorial interested in a friend helpful.