简体   繁体   中英

How do I include a path of google client library in php

$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';
}

when I am running it on browser its showing following error.. 在此处输入图片说明

You are not using the path seperator when calling set_include_path, try this:

$r = set_include_path(get_include_path() . PATH_SEPARATOR . '\google-api-php-client-master\src');

Here is the documentation on set_include_path

Edit

Did you restart Apache after making the change to your php.ini?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM