2

我正在尝试将 google 客户端 api 集成到我的 codeigniter 项目中,并且我已将 google 客户端 api 库放在我的第三方文件夹中。然后制作了一个名为 Google.php 的库,代码如下:

<?php
if (!defined('BASEPATH'))
    exit('No direct script access allowed');
set_include_path(APPPATH . 'third_party/' . PATH_SEPARATOR . get_include_path());
require_once APPPATH . 'third_party/Google/Client.php';

class Google extends Google_Client {
    function __construct($params = array()) {
        parent::__construct();
    }
}
?>

然后我将这个库包含在我的主控制器中并尝试访问它,

<?php defined('BASEPATH') OR exit('No direct script access allowed');

class main extends CI_Controller {   
     function __construct() {
            parent::__construct();
            $this->load->library('google');
     }  
     public function index()    {       
            echo $this->google->getLibraryVersion();
     }
}

但是当我尝试这个谷歌客户端库时显示下面给出的这个错误。 在此处输入图像描述 Google Client.php 在此行显示第一个错误

/** @var array $scopes */
  // Scopes requested by the client
  protected $requestedScopes = [];
4

1 回答 1

2

问题是您只能[]在 php 5.4 之后使用短数组语法。您使用的库与 php 5.4+ 兼容。文档在这里。

从 PHP 5.4 开始,您还可以使用短数组语法,它将 array() 替换为 []。

您需要升级您的 php 版本或使用另一个支持旧版本 php 的库。

于 2015-12-25T13:58:29.560 回答