用PHP实现飞信api接口发飞信短信

用PHP实现飞信api接口发飞信短信

不过这个不能和飞信客户端同时登录,二者只能登一个,只要代码在dw里打开,客户端就掉了呵呵~~~

 

<?php  

/* 

 * Created on 2010-4-18 

 * MiaoPengFei 

 * To change the template for this generated file go to 

 * Window - Preferences - PHPeclipse - PHP - Code Templates 

 */  

    $data["username"] = ;//这里填自己的手机号  

   $data["password"] = "";//这里填飞信的密码  

   $data["sendto"] = ;//这里填收信人的号码  

   $data["message"] = "没事,这是我自己编的php代码,发的短信哈哈!";//这里填飞信短信内容  

 

    $curl = new Curl_Class();  

    $result = @$curl->post("http://sms.api.bz/fetion.php", $data);  

    echo $result; //返回信息默认为UTF-8编码的汉字,如果你的页面编码为gb2312,请使用下行语句输出返回信息。  

     //echo iconv("UTF-8", "GBK", $result);  

  

     //curl类  

     class Curl_Class  

     {  

    function Curl_Class()  

    {  

     return true;  

     }  

  

     function execute($method, $url, $fields = '', $userAgent = '', $httpHeaders = '', $username = '', $password = '')  

     {  

    $ch = Curl_Class::create();  

     if (false === $ch)  

     {  

     return false;  

     }  

  

     if (is_string($url) && strlen($url))  

     {  

     $ret = curl_setopt($ch, CURLOPT_URL, $url);  

    }  

    else  

     {  

    return false;  

     }  

     //是否显示头部信息  

     curl_setopt($ch, CURLOPT_HEADER, false);  

   //  

    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);  

  

    if ($username != '')  

    {  

     curl_setopt($ch, CURLOPT_USERPWD, $username . ':' . $password);  

     }  

  

     $method = strtolower($method);  

     if ('post' == $method)  

    {  

     curl_setopt($ch, CURLOPT_POST, true);  

     if (is_array($fields))  

     {  

     $sets = array();  

     foreach ($fields AS $key => $val)  

     {  

     $sets[] = $key . '=' . urlencode($val);  

     }  

     $fields = implode('&',$sets);  

     }  

     curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);  

     }  

     else if ('put' == $method)  

     {  

     curl_setopt($ch, CURLOPT_PUT, true);  

     }  

  

     //curl_setopt($ch, CURLOPT_PROGRESS, true);  

     //curl_setopt($ch, CURLOPT_VERBOSE, true);  

     //curl_setopt($ch, CURLOPT_MUTE, false);  

     curl_setopt($ch, CURLOPT_TIMEOUT, 10);//设置curl超时秒数  

  

     if (strlen($userAgent))  

     {  

     curl_setopt($ch, CURLOPT_USERAGENT, $userAgent);  

     }  

  

     if (is_array($httpHeaders))  

     {  

     curl_setopt($ch, CURLOPT_HTTPHEADER, $httpHeaders);  

     }  

  

     $ret = curl_exec($ch);  

  

     if (curl_errno($ch))  

     {  

     curl_close($ch);  

     return array(curl_error($ch), curl_errno($ch));  

     }  

     else  

     {  

     curl_close($ch);  

     if (!is_string($ret) || !strlen($ret))  

     {  

     return false;  

     }  

     return $ret;  

    }  

     }  

  

     function post($url, $fields, $userAgent = '', $httpHeaders = '', $username = '', $password = '')  

     {  

     $ret = Curl_Class::execute('POST', $url, $fields, $userAgent, $httpHeaders, $username, $password);  

     if (false === $ret)  

     {  

     return false;  

     }  

  

     if (is_array($ret))  

     {  

     return false;  

     }  

     return $ret;  

     }  

     function get($url, $userAgent = '', $httpHeaders = '', $username = '', $password = '')  

    {  

    $ret = Curl_Class::execute('GET', $url, '', $userAgent, $httpHeaders, $username, $password);  

     if (false === $ret)  

     {  

     return false;  

    }  

  

     if (is_array($ret))  

    {  

     return false;  

    }  

    return $ret;  

     }  

  

    function create()  

     {  

     $ch = null;  

     if (!function_exists('curl_init'))  

     {  

     return false;  

     }  

     $ch = curl_init();  

     if (!is_resource($ch))  

     {  

     return false;  

     }  

    return $ch;  

     }  

  

   }  

?>  

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
项目:使用 JavaScript 编写的杀死幽灵游戏(附源代码) 杀死鬼魂游戏是使用 Vanilla JavaScript、CSS 和 HTML 画布开的简单项目。这款游戏很有趣。玩家必须触摸/杀死游荡的鬼魂才能得分。您必须将鼠标悬停在鬼魂上 - 尽量得分。鬼魂在眨眼间不断从一个地方移动到另一个地方。您必须在 1 分钟内尽可能多地杀死鬼魂。 游戏制作 这个游戏项目只是用 HTML 画布、CSS 和 JavaScript 编写的。说到这个游戏的特点,用户必须触摸/杀死游荡的幽灵才能得分。游戏会根据你杀死的幽灵数量来记录你的总分。你必须将鼠标悬停在幽灵上——尽量得分。你必须在 1 分钟内尽可能多地杀死幽灵。游戏还会显示最高排名分数,如果你成功击败它,该分数会在游戏结束屏幕上更新。 该游戏包含大量的 javascript 以确保游戏正常运行。 如何运行该项目? 要运行此游戏,您不需要任何类型的本地服务器,但需要浏览器。我们建议您使用现代浏览器,如 Google Chrome 和 Mozilla Firefox。要玩游戏,首先,单击 index.html 文件在浏览器中打开游戏。 演示: 该项目为国外大神项目,可以作为毕业设计的项目,也可以作为大作业项目,不用担心代码重复,设计重复等,如果需要对项目进行修改,需要具备一定基础知识。 注意:如果装有360等杀毒软件,可能会出现误报的情况,源码本身并无病毒,使用源码时可以关闭360,或者添加信任。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值