Home >php教程 >php手册 >PHP飞信发送类(PHPFetion)v1.5发布

PHP飞信发送类(PHPFetion)v1.5发布

WBOY
WBOYOriginal
2016-06-06 20:07:301174browse

这次的主要更新是切换了登录入口,使飞信继续可用。 使用方式再贴一遍: //包含飞信类文件require 'PHPFetion.php';//实例化,参数为发送人手机号、飞信密码$fetion = new PHPFetion('13500001111', '123123');//接收人手机号、飞信内容$fetion-send('135000

这次的主要更新是切换了登录入口,使飞信继续可用。

使用方式再贴一遍:

//包含飞信类文件
require 'PHPFetion.php';
//实例化,参数为发送人手机号、飞信密码
$fetion = new PHPFetion('13500001111', '123123');
//接收人手机号、飞信内容
$fetion->send('13500001111', 'Hello Fetion1!');
$fetion->send('13500002222', 'Hello Fetion2!');
$fetion->send('13500003333', 'Hello Fetion3!');
$fetion->send('13500004444', 'Hello Fetion4!');
$fetion->send('13500005555', 'Hello Fetion5!');

有不少网友在发送中文的时候遇到了问题,这是因为飞信的内容是utf-8编码的。如果你的程序或接收的参数是utf-8的则没有这个问题,如果不是也没关系,简单的转码即可,如下:

//对$message进行转码
$message = iconv('gbk', 'utf-8', $message);
$fetion->send('13500001111', $message);

另外,不方便使用PHPFetion的朋友也可以使用飞信HTTP接口。

下载地址:http://code.google.com/p/php-fetion/downloads/list

感谢无心问世CplusHua等网友提供的帮助与线索。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn