我正在尝试使用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”,但是却不能让我得到文件的完整目录。我正在尝试遍历它们并将其放在本地数组中。 感谢您的帮助!