0
我正在使用'PHP On Couch'插件通過php訪問couchDB。而且我不知道如何 多個附件添加到Couchdb多個附件
$client = new couchClient($couch_dsn,$couch_db);
$doc = $client->getDoc('meantime');
$res1 = $client->storeAttachment($doc,'files/file1.html','text/html', 'file1.html');
$res2 = $client->storeAttachment($doc,'files/file2.html','text/html', 'file2.html');
只有一個附件被綁定到文檔,但不是第二個文檔?