2

在 Google 文档(https://developers.google.com/drive/v2/reference/files/insert)中有以下代码片段:

$file = new Google_DriveFile();
  ...
$parent = new ParentReference();

我在Fatal error: Class 'ParentReference' not found. 我为ParentReference搜索了google-api-php-client

lib: grep -R ParentReference ./ | grep class
.../Google_DriveService.php:class Google_ParentReference extends Google_Model {

似乎添加了一些前缀“Google_”并将ParentReference重命名为 *Google_ParentReference* 。

我的结论对吗?还有什么我无法理解的吗?

4

1 回答 1

4

你是对的。

如果您要下载最新的PHP SDK ,您可以检查几乎所有的类都有前缀Google_

例如,在文件夹中,\src\contrib\Google_DriveService.php您会找到 Google_ParentReference 的定义。

还要检查父母:插入(Google Drive SDK)。

于 2012-12-12T10:38:51.620 回答