Hi,
I didn’t know where to report it, so I’m just leaving it here!
On http://docs.couchbase.com/developer/php-2.0/bulk-operations.html, PHP syntax is incorrect.
$myBucket = $myCluster->openBucket();
$res = $myBucket.get(array('document_name_1', 'document_name_2'));
var_dump($res);
should be
$myBucket = $myCluster->openBucket();
$res = $myBucket->get(array(‘document_name_1’, ‘document_name_2’));
var_dump($res);
$myBucket.get to $myBucket->get