首页 > 代码库 > 飞信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()){>