作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试做一个非常简单的事情:
require_once 'vendor/google/src/Google/Client.php';
require_once 'vendor/google/src/Google/Service/Plus.php';
...我收到此错误:
require_once(Google/Auth/AssertionCredentials.php): failed to open stream: No such file or directory
为什么?
我使用的是 https://github.com/google/google-api-php-client 上可用的最新版本并且似乎在 Client.php 中每个 require_once 使用了错误的路径......或者不是?
任何帮助将不胜感激!
非常感谢,
尼科洛
最佳答案
对于您的问题,您需要在 php 的“include_path”中添加库的基本目录。
尝试将这行代码放在 require_once 之前
set_include_path( get_include_path() . PATH_SEPARATOR . 'vendor/google/src' );
关于google-api-php-client - require_once(谷歌/Auth/AssertionCredentials.php): failed to open stream: No such file or directory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20994928/
我正在尝试做一个非常简单的事情: require_once 'vendor/google/src/Google/Client.php'; require_once 'vendor/google/src
我是一名优秀的程序员,十分优秀!