You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Andy Truong edited this page Mar 7, 2014
·
2 revisions
<?php$kv = at_container('kv', 'collection_name');
// Get collection name$kv->getCollectionName();
// Simple set$kv->set('foo', 'bar');
// Only set if no current value at key `foo`$kv->setIfNotExists('foo', 'baz');
// Output: barecho$kv->get('foo');
// Delete$kv->delete($foo);