至此,http://api.ajaxsns.com/ 上的提供的接口基本上已被我N完。记录一下剩下的接口调用.
上图




代码如下
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
//天气预报private function get_weather($find_name){ $find_name=empty($find_name)?"桂林":$find_name; return $this->_ajaxsns_comm("天气".$find_name);} //在线计算private function get_calculate($find_name){ return $this->_ajaxsns_comm($find_name);} //域名信息查询private function get_domain($find_name){ return $this->_ajaxsns_comm("域名".$find_name);} //IP
归属private function get_ip($find_name){ return $this->_ajaxsns_comm("归属".$find_name);} //手机
归属private function get_mobile($find_name){ return $this->_ajaxsns_comm("归属".$find_name);} |
收工
原文:http://blog.csdn.net/w116858389/article/details/18453051