我正在尝试在wordpress和我的php应用程序中安装和使用google-api-php-client
我已请求我的管理员经理安装它。他们将以下脚本包含在php.ini
文件中。
include_path=".;/usr/local/src/google-api-php-client/src"
现在我想在我的wordpress应用程序中包含和使用google api。我在wordpress root中创建了一个名为google.php的文件来测试它,在我的研究中我发现我现在需要在php文件中包含这些代码,所有内容都将启动并运行。
require 'Google/Client.php';
require 'vendor/autoload.php';
最后我得到这样的错误:
Fatal error: require(): Failed opening required 'Google/Client.php' (include_path='.;/usr/local/src/google-api-php-client/src') in
你能帮我解决这个问题吗?
答案 0 :(得分:0)
您只需要包含autoload.php文件。此文件负责加载其他类,包括Google / Client.php。请看这个链接:https://github.com/google/google-api-php-client