加入收藏 | 设为首页 | 会员中心 | 我要投稿 汽车网 (https://www.0577qiche.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > PHP教程 > 正文

php飞信接口例子应用代码

发布时间:2023-08-16 13:33:05 所属栏目:PHP教程 来源:
导读:header("content-type: text/html; charset=utf-8");

error_reporting(0);

include "../libs/fetion.class.php";


$demo = $_get[demo];

$help = '帮助:如果需要群发多号用英文逗号(,)分
header("content-type: text/html; charset=utf-8"); 
 
error_reporting(0); 
 
include "../libs/fetion.class.php"; 
 
 
$demo = $_get[demo]; 
 
$help = '帮助:如果需要群发多号用英文逗号(,)分隔(159..,159..),有更多建议请联系 qq:85431993<br>e-mail:threesky@gmail.com'; 
 
$api = "本站接口:<br>http://api.heqee.com/fetion/?username=飞信手机号码&passowrd=飞信手机密码&to=接收人号码&message=短信内容<br>或者<br>http://api.heqee.com/fetion/?u=飞信手机号码&p=飞信手机密码&t=接收人号码&m=短信内容"; 
 
if($demo!=""){ 
  if(!in_array($demo,array("send","code","help","api"))){error("参数错误!");} 
  switch($demo){ 
 case "code": 
  exit(highlight_file("demo.php",true)); 
 break; 
 case "help": 
  exit($help); 
 break; 
 case "api": 
  exit($api); 
 break; 
  } 

function getval($key){ 
 if(!isset($_post[$key])||$_post[$key]==null||$_post[$key]==''){ 
  return ($_get[$key] !=''&& isset($_get[$key])) ? trim($_get[$key]) : null; 
 }else{ 
  return ($_post[$key] !=''&& isset($_post[$key])) ? trim($_post[$key]) : null; 
 } 

 
function error($msg){ 
 exit("<b>heqee info:</b> ".$msg); 

function gbktoutf8 ($value) {  
 return iconv("gbk", "utf-8", $value);  

$send=array(); 
$send['username'] = getval('username') != null ? getval('username') : getval('u'); 
$send['password'] = getval('password') != null ? getval('password') : getval('p'); 
$send['to']   = getval('to') != null ? getval('to') : getval('t'); 
$send['message']  = gbktoutf8(getval('message') != null ? getval('message') : getval('m')); 
$send['message_len']=strlen($send['message']); 
 
switch($send){ 
 case $send['username']==null: 
  error('请输入登陆手机的号码.'); 
 break; 
 case $send['password']==null: 
  error('请输入登陆手机的密码.'); 
 break; 
 case $send['to']==null: 
  error('请输入接收手机的号码.'); 
 break; 
 case $send['message']==null: 
  error('请输入短信内容.'); 
 break; 
 case $send['message_len'] >360: 
  error('消息内容不能超过180个字符.'); 
 break; 

 
$fetion = new fetion($send['username'], $send['password']); 
 
$fetion->send($send['to'],$send['message']); 
实例应用,代码如下:

/* 
所需php扩展:curl, simplexml 
*/ 
include "libs/fetion.class.php"; 
#设置飞信帐号密码 
$username="15900000000"; 
$password="password"; 
//接收号码,多号码用","分隔(159..,159..) 
$sendto ="15900000000,13400000000"; 
//消息内容 
$message = "i am from heqee.com"; 
//开源代码Cuoxin.com 
//实例化(必须) 
$fetion = new fetion($username,$password); 
//发送 返回布尔 
$sms = $fetion->send($sendto,$message);  
if($sms){ 
 echo "ok"; 
}
 

(编辑:汽车网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章