123456789101112131415161718 |
- <?php
- $uid="test" //分配给你的账号
- $pwd="123456" //密码
- $mob="13928783309,13800008888" //发送号码用逗号分隔
- $content="你好短信内容" //短信内容
- //===========================
- $sendurl="http://service.winic.org/sys_port/gateway/?id=".$uid."&pwd=".$pwd."&to=".$mob."&content=".$content."&time="
- $xhr=new COM("MSXML2.XMLHTTP");
- $xhr->open("GET",$sendurl,false);
- $xhr->send();
- echo $xhr->responseText ;
- ?>
|