我是 IBM Graph db 和 IBM Bluemix 的初学者。我需要使用 php 进入数据库。
已尝试使用托管在官方 tinkerpop 中的此库 https://github.com/PommeVerte/gremlin-php进行连接 ,但它不起作用。
经过调试才知道,每当遇到
require_once('vendor/autoload.php');
use Brightzone\GremlinDriver\Connection;
$db = new Connection([
'host' => 'localhost',
'graph'=>'g',
'ssl' => [
"ssl"=>[
"verify_peer"=>false,
"verify_peer_name"=>false,
]
]
]);
$db->open();
它停止执行。它没有显示任何错误,它只是一个空页面。
有人可以指导我解决这个问题吗?
谢谢