php调用sms9短信接口的函数:
function sendsms($mobile,$content)
{
$user_id = ''; // sms9平台用户id
$pass = ''; // 用户密码
$channelid = ''; // 发送频道id
if(!$mobile || !$content || !$user_id || !$pass || !$channelid) return false;
if(is_array($mobile)) $mobile = implode(",",$mobile);
/* utf8需要转码
$content = iconv("utf-8","gbk//ignore",$content);
**/
$content = urlencode($content);
$api = "http://admin.sms9.net/houtai/sms.php?cpid={$user_id}&password={$pass}&channelid={$channelid}&tele={$mobile}&msg={$content}";
$res = file_get_contents($api);
return strpos($res,'success') === false ? $res : true;
}
使用方法:sendsms("手机号码","发送内容"); 多个手机号码可以用,连接,或者传入数组。