我正在使用“PHP On Couch”插件通过 php 访问 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');
只有一个附件与文档相关联,而第二个则没有?