$r = set_include_path(get_include_path() . '\google-api-php-client-master\src');
echo $r;
require_once 'Google/Client.php';
require_once 'Google/Service/AdExchangeSeller.php';
function __autoload($class_name) {
include 'examples/' . $class_name . '.php';
}当我在浏览器上运行它时,它显示以下错误..

发布于 2015-12-21 15:07:28
调用set_include_path时未使用路径分隔符,请尝试以下操作:
$r = set_include_path(get_include_path() . PATH_SEPARATOR . '\google-api-php-client-master\src');Here is the documentation on set_include_path
编辑
在更改php.ini后,您是否重新启动了Apache?
https://stackoverflow.com/questions/34390095
复制相似问题