警告:json_encode():类型不受支持,在couchbase中编码为null

时间:2015-06-20 07:56:20

标签: couchbase

我已在远程linux机器上安装了couchbase,现在想要使用php脚本在Windows上访问它。我在Windows 7上使用putty。

我的代码如下:

if(extension_loaded('couchbase')) {    
    $cluster = new CouchbaseCluster('http://23.99.27.188:8091');  
    $bucket = $cluster->openBucket('beer-sample');  
    $get = $bucket->get('Demo');  
    echo json_encode($get); }  else  {  
      echo "Error";  
  }  

但这会产生错误:

Warning: json_encode(): type is unsupported, encoded as null in C:\xampp\htdocs\couchbase\index.php on line 28

0 个答案:

没有答案