Git-Projektadresse Kirche/neo4j: https://github.com/fireqong/neo4j
Einführung
Mit der PHP-basierten Neo4j-Bibliothek können Sie bequemer eine Verbindung zur neo4j-PHP-Bibliothek herstellen, Quelldokument-Linkadresse neo4j http API: https://neo4j.com/docs/http-api/current/actions/
Anforderungen an die Installationsumgebung
PHP >= 7.4
Installation
composer require church/neo4j
Nutzung
Initialisierung
$app = new \Church\Neo4j\Application("http://127.0.0.1:7474", "neo4j", "neo4j"); $app->discovery();
Abfrageanweisung
$statement = (new \Church\Neo4j\Statement('CREATE (n $props) RETURN n)'))->params([ 'props' => [ 'name' => 'test' ] ]);
Transaktion öffnen
$statements = \Church\Neo4j\StatementRepository::add($statement); $transaction = $app->transaction($statements); $transaction->begin();
Transaktion senden
$result = $transaction->commit(); if ($result->getRawResponse()->getStatusCode() == 200) { print_r($result->getData()); }
Transaktionsgültigkeitsdauer verlängern
default expiry time is 60 seconds.$transaction->keepAlive();
Rollback
$transaction->rollback();
Transaktion öffnen und senden
$result = $transaction->beginAndCommit();print_r($result);
Unit. test
composer install ./vendor/bin/phpunit
Das obige ist der detaillierte Inhalt vonTeilen Sie eine neo4j-PHP-Bibliothek (Graphdatenbank)!. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!