首页 > 代码库 > 飞信php接口 web service
飞信php接口 web service
<?php /** ┃ ┃ code is far away from bug with the animal protecting ┃ ┃ 神兽保佑,代码无bug ┃ ┗━━━┓ ┃ ┣┓ ┃ ┏┛ ┗┓┓┏━┳┓┏┛ ┃┫┫ ┃┫┫ ┗┻┛ ┗┻┛ * @author 邹颢 zouhao619@gmail.com
2014-06-12 */ class Fetion{ private $_url='http://quanapi.sinaapp.com/fetion.php'; private $_username;//发送者 飞信账号 private $_password; //发送者 飞信密码 /** * 发送短信 * @param string $other * @param string $msg */ public function sendMessage($other,$msg){ //因为飞信不能发送带有空格,所以特意用|符号来代替空格 $msg=urlencode($msg); $data['u']=$this->_username; $data['p']=$this->_password; $data['to']=$other; $data['m']=$msg; return $this->_curl_get($this->_url,$data); } /** * curl模拟http get请求 * @param string $url 请求网址 * @param string|array $data 请求参数 * @return string 网址内容 */ private function _curl_get($url,$data=http://www.mamicode.com/array()){>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。