|
其实我一直对移动设备相关的东西比较感兴趣
刚刚找到了一个发布在phpx里的一个飞信类
下载类库:
class_fetion.zip
(3.51 KB, 下载次数: 96)
示例:
PHP复制代码
<?php
include "./class_fetion.php";
//new fetion class and init
$fetion = new fetion ('13811264858', 'xxxx');
$fetion->init() or die("fetion init failure!\n");
//example 1
$fetion->sent_sms('tel:13811264858', '我有我喜悦!');
//example 2
$fetion->sent_sms('sip:589716505@fetion.com.cn;p=4013', '我有我喜悦!');
//example 3
$friends = $fetion->get_friends_list();
var_dump($friends);
?>
复制代码
原文地址:http://www.phpx.com/happy/thread-257156-1-1.html
感谢作者。 |
|