数组定义规范统一

This commit is contained in:
thinkphp
2013-04-01 11:03:19 +08:00
parent 668aca97c8
commit 6f5db51323
33 changed files with 87 additions and 87 deletions

View File

@@ -173,7 +173,7 @@ abstract class Driver {
* @param string $method 请求方法GET/POST
* @return array $data 响应数据
*/
protected function http($url, $params, $method = 'GET', $header = array()){
protected function http($url, $params, $method = 'GET', $header = []){
$vars = http_build_query($params);
$opts = array(
CURLOPT_TIMEOUT => 30,

View File

@@ -39,7 +39,7 @@ class Douban extends Driver{
*/
public function call($api, $param = '', $method = 'GET'){
/* 豆瓣调用公共参数 */
$params = array();
$params = [];
$header = array("Authorization: Bearer {$this->token['access_token']}");
$data = $this->http($this->url($api), $this->param($params, $param), $method, $header);
return json_decode($data, true);

View File

@@ -39,7 +39,7 @@ class Github extends Driver{
*/
public function call($api, $param = '', $method = 'GET'){
/* Github 调用公共参数 */
$params = array();
$params = [];
$header = array("Authorization: bearer {$this->token['access_token']}");
$data = $this->http($this->url($api), $this->param($params, $param), $method, $header);

View File

@@ -45,7 +45,7 @@ class Google extends Driver{
*/
public function call($api, $param = '', $method = 'GET'){
/* Google 调用公共参数 */
$params = array();
$params = [];
$header = array("Authorization: Bearer {$this->token['access_token']}");
$data = $this->http($this->url($api), $this->param($params, $param), $method, $header);

View File

@@ -61,7 +61,7 @@ class Renren extends Driver{
/* 签名 */
ksort($params);
$param = array();
$param = [];
foreach ($params as $key => $value){
$param[] = "{$key}={$value}";
}