在 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* 。
我的结论对吗?还有什么我无法理解的吗?