2014-04-02 78 views

回答

2
MATCH (n) 
RETURN ID(n) as nodeId 

見文檔:http://docs.neo4j.org/chunked/milestone/query-functions-scalar.html#functions-id

編輯:

我不知道PHP很好,但假設你使用neo4jphp我想一般的想法會是這樣的

$client = new Everyman\Neo4j\Client(); 
$queryString = "MATCH (n) RETURN ID(n) as nodeId"; 
$query = new Everyman\Neo4j\Cypher\Query($client, $queryString); 
$result = $query->getResultSet(); 
echo $result[0]['nodeId'] 

您需要閱讀neo4jphphere,特別是how to use cypher。或者您可以使用php cURLNeo4j REST API

+0

謝謝:)你能告訴我如何在使用PHP的網頁上顯示該ID? – LearnerFreak

+0

非常感謝:)這真的很有幫助。 – LearnerFreak