Skip to content

Kentaree/Blobshare-PHP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

Blobshare-PHP

Simple PHP interface for http://blobshare.rocks

Simply store and retrieve blobs of JSON from PHP.

Usage

Instantiate the BlobShare class

$bs = new BlobShare();

Retrieving a blob of JSON

$json = $bs->get('Blobname');

Adding a new blob

$json = array('Somekey'=>'SomeOtherValue', 'NewKey'=>'NewValue');
$res = $bs->add('Blobname',$json);

Updating a blob

$res = $bs->update('Blobname',$json);

Deleting a blob

$res = $bs->delete('Blobname',$json);

About

Simple PHP interface for blobshare.rocks

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages