如何使用Google Cloud Storage存储桶中的PHP从子目录中获取文件?

时间:2018-11-30 16:26:49

标签: php google-cloud-storage

我正在尝试使用PHP和Google Cloud Storage API从子目录中获取所有文件。我的代码如下:

$bucket = $storage->bucket('mybucket/subdirectory/');
foreach ($bucket->objects() as $fileInfo) {
    $data = file_get_contents($fileInfo);
    $json = json_decode($data);
    $title = $json->title;
    echo $title.'</br>';
    $json->firstLetter = mb_substr($title, 0, 1, 'UTF8');
    $calcArr[$count] = $json;

    $count++;//counting all jsons
}

我已经成功进行了身份验证,因为它可以让我得到一个像这样的文件:“ mybucket / subdirectory / file.json”,但是却不能让我得到文件的完整目录。我正在尝试遍历它们并将其放在本地数组中。 感谢您的帮助!

0 个答案:

没有答案