我使用Yii2和作曲家附加的“google / client”。问题是谷歌库具有带名称空间的类名。 E. g。 Client.php有类Google_Client。 Composer的自动加载器无法使用该语法。我怎样才能使它发挥作用?
答案 0 :(得分:1)
把
use google\apiclient;
命名空间中的
然后使用:
set_include_path(Yii::$app->BasePath . '/vendor/google/apiclient/src');
还要在类之前加上反斜杠来解析命名空间,例如
$analytics = new \Google_Service_Analytics($client);