Swift是OpenStack的對象存儲服務。在php-opencloud庫中,通過connection對象創建的ObjectStore類(OpenStack或Rackspace)來存取。 例如: $cloud = new \OpenCloud\OpenStack(array( 'username'=>'{username}','password'=>'{password}')); $swift = $cloud->ObjectStore('cloudFiles','DFW'); 使用新創建的$swift,你可以使用不同的對象存儲組件。 最高級別的對象存儲組件實例是Container,Container是對象的集合名稱,與文件系統中的目錄和文件夾類似(實際上並不等同)。 所有的對象都保存在Container中。 在一個對象存儲實例中列舉所有Container ContainerList對象是Container對象的集合。列舉對象存儲實例中的所有Container: $containers = $swift->ContainerList(); while($container = $containers->Next()) printf("%s\n", $container->name); 就像其他的對象集合,這也支持First(), Next()和Size()方法。 創建一個新Container 使用上面新創建的$swift對象的Container()方法創建一個新的(空的)的container。 $mycontainer = $swift->Container(); 將該Container保存到對象存儲實例中,使用Create()方法: $mycontainer->Create('MyContainerName'); name不是必須在Create()方法中,如果name已經被設置的話。直接在方法中指定名稱也是很方便的。 $mycontainer->name = 'MyContainerName'; $mycontainer->Create(); 檢索已存在的Container 如果你傳遞一個參數到ObjectStore對象的Container()方法中,可以檢索一個已存在的Container: $oldcontainer = $swift->Container('SomeOldContainer'); 在這種情況下,關於SomeOldContainer的信息將被檢索。這包含Container的metadata信息。 printf("Container %s has %d object(s) consuming %d bytes\n", $oldcontainer->name, $oldcontainer->count, $oldcontainer->bytes); 刪除Container Delete()方法刪除Container $oldcontainer->Delete(); 請注意,Container被刪除時必須是空的,也就是說必須沒有對象與它相關聯。 更新Container 在後台,容器創建和更新方式完全相同。你可以使用Create()方法來更新Container;然而,Update()方法也被作為Create()方法的別名而存在,因為這在語義學上可能不同(在你的程序中): $oldcontainer->metadata->update_time = time(); $oldcontainer->Update();