phore / cloudstore

此包已被废弃,不再维护。作者建议使用phore/objectstore包。

数据分析框架

安装: 42

依赖: 0

建议者: 0

安全性: 0

星标: 0

关注者: 2

分支: 0

开放问题: 0

语言:Shell

dev-master 2018-08-30 15:31 UTC

This package is auto-updated.

Last update: 2022-02-01 13:14:27 UTC


README

安装

composer requre phore/cloudstore

基本用法

$store = new ObjectStore(new GoogleCloudStoreDriver(__DIR__ . "/file/to/identity.json", "bucketName"));

$store->put("object/some.json", "Some Data");

if ($store->has("object/some.json"))
    echo "Object existing";

echo $store->get("object/some.json");