3

私は neo4j と neo4j-php-clien を初めて使用し、基本的な使い方のチュートリアルに従っています。

これは私が持っているものです:

$result = $client->run("MATCH (n:Person) RETURN n");

echo var_dump ($result->getRecords());

これは出力です:

object(GraphAware\Neo4j\Client\Formatter\RecordView)#31 (3) { ["keys":protected]=> array(1) { [0]=> string(1) "n" } ["values": protected]=> array(1) { [0]=> object(GraphAware\Neo4j\Client\Formatter\Type\Node)#40 (3) { ["id":protected]=> int(187) ["labels ":protected]=> array(1) { [0]=> string(8) "X2Person" } ["properties":protected]=> array(2) { ["name"]=> string(4) " Ales" ["age"]=> int(34) } } } ["keyToIndexMap":"GraphAware\Neo4j\Client\Formatter\RecordView":private]=> 配列(1) { ["n"]=> int (0) } }

レコードの保護された非公開フィールドにアクセスするにはどうすればよいですか?

4

2 に答える 2