1, support Mass
2, Chinese into pinyin send
If you need to mass multiple accounts in English comma (, (86159..,86159), message content does not support Chinese, when you enter Chinese, the system will automatically convert to pinyin (in order to distinguish the pinyin, pinyin first letter capitalization), to ensure that the message can be sent to normal (input "I am whirlwind" message content for "Wo Shi Xuan Feng ").
Copy Code code as follows:
<?php
/*
Tip: If you need to group multiple accounts in English comma (,) separated (86159..,86159 ...), the message content does not support Chinese,
When you enter Chinese, the system will automatically convert to pinyin (in order to distinguish between pinyin, pinyin first letter capitalization),
Guaranteed message can be sent normally (enter "I am Whirlwind" SMS Content "Wo Shi Xuan Feng")
PHP extensions required: curl. Character encoding is GBK (Pinyin conversion is considered)
*/
Introducing phonetic conversion needs files
Include ("libs/pinyin.php");
Include "libs/googlevoice.class.php";
#设置google Voice account password
$username = "username@gmail.com";
$password = "password";
Accept the number, multiple numbers with "," separated (86159..,86159 ...)
$sendto = "8615900000000,8613400000000";
Message content
$message = "I am from heqee.com";
/*
Convert Chinese to Pinyin program to automatically identify Chinese for substitution,
This feature is personally considered purely entertaining and can be added according to the actual situation.
*/
$message = Zh2pinyin ($message);
Instantiated (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