我正在尝试使用 zend gdata 库将一个简单的 csv 文档上传到谷歌文档,但不知何故它卡住了。
我查看了所有用于上传的文件,发现卡在哪里:
上线:Zend/Gdata/Docs.php 229 后:$fs = $this->newMediaFileSource($fileLocation);
即使我查看了每个文件,我也找不到 newMediaFileSource() 函数。任何人都知道我该如何解决这个问题?
public function uploadFile($fileLocation, $title=NULL, $mimeType=NULL, $uri=NULL)
{
// Set the URI to which the file will be uploaded.
if ($uri === NULL) {
$uri = $this->_defaultPostUri;
}
// Right after this line it stops executing:
$fs = $this->newMediaFileSource($fileLocation);
if ($title !== NULL) {
$slugHeader = $title;
} else {
$slugHeader = $fileLocation;
}