Skip to content

Instantly share code, notes, and snippets.

@jchris
Created September 12, 2012 21:05
Show Gist options
  • Save jchris/3709927 to your computer and use it in GitHub Desktop.
Save jchris/3709927 to your computer and use it in GitHub Desktop.
<?php
// adjust these parameters to match your installation
$cb = new Couchbase("127.0.0.1:8091", "user", "pass", "default");
$cb->set("a", 1);
var_dump($cb->get("a"));
?>
<?php
$cb = new Couchbase("127.0.0.1:8091", "user", "pass", "default");
$result = $cb->view("design_doc", "view_name");
foreach($result["rows"] as $row) {
echo $row->key;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment