📜  PHP CouchDB示例

📅  最后修改于: 2020-11-22 09:51:47             🧑  作者: Mango

php CouchDB连接

在本教程中,我们将说明php CouchDb连接的示例。 PHP提供了简单的连接方法。我们只需要执行下面给出的Php脚本即可。

默认情况下,CouchDB在5984端口上执行。

1)创建一个Php文件

// index.php

send("GET", "/"); 
// Create a new database "javatpoint".
$couch->send("PUT", "/javatpoint"); 
// Create a new document in the database.
$couch->send("PUT", "/javatpoint/24", '{"_id":"24","name":"John"}'); 
// Fetching document
$resp = $couch->send("GET", "/javatpoint/24"); 
echo $resp; 
class CouchSimple {
function CouchSimple($options) {
foreach($options AS $key => $value) {
$this->$key = $value;
}
} 
function send($method, $url, $post_data = NULL) {
$s = fsockopen($this->host, $this->port, $errno, $errstr); 
if(!$s) {
echo "$errno: $errstr\n"; 
return false;
} 
$request = "$method $url HTTP/1.0\r\nHost: $this->host\r\n"; 
if ($this->user) {
$request .= "Authorization: Basic ".base64_encode("$this->user:$this->pass")."\r\n"; 
}
if($post_data) {
$request .= "Content-Length: ".strlen($post_data)."\r\n\r\n"; 
$request .= "$post_data\r\n";
} 
else {
$request .= "\r\n";
}
fwrite($s, $request); 
$response = ""; 
while(!feof($s)) {
$response .= fgets($s);
}
list($this->headers, $this->body) = explode("\r\n\r\n", $response); 
return $this->body;
}
}
?>

2)访问CouchDB

我们可以使用http:// localhost:5984 / _utilsto查看可用的数据库。

3)执行PHP脚本

现在在您的本地主机服务器上执行Php文件。之后,再次访问CouchDB。

看,我们的脚本已经创建了一个数据库javatpoint。它还包含带有值的文档。

该文档被称为ID24。通过单击它,我们可以看到存储在文档中的值。值显示如下:

4)获取数据