我在eclipse和neo4j中使用php创建了一个项目。我连接时遇到问题。这是我为连接数据库而编写的代码。
<?php
include("neo4jphp.phar");
use Everyman\Neo4j\Client;
$neo4jClient = new \Everyman\Neo4j\Client('https://127.0.0.1:7474',7474);
$neo4jClient->getTransport()
->setAuth('username','password')
->getTransport()->useHttps();
这是显示我遇到的错误的链接。 链接:https://selene.hud.ac.uk/irr/connect.php
根据我的研究,这应该是正确的。我也在使用此视频来帮助我建立连接:https://vimeo.com/125334699
使用我的代码在正确的方向上的一些指导将不胜感激。