我一直试图找到关于这个问题的文档,但到目前为止没有运气。这就是我所拥有的:
$firebase = (new Factory)
->withServiceAccount($serviceAccount)
->withDatabaseUri('https://mydomain.firebaseio.com/')
->create();
$db = $firebase->getDatabase();
$db->getReference('cars')
->orderByChild('brand')
->equalTo('volvo')
->limitToLast(10)
->getSnapshot();
...
现在,我如何循环访问数据并从快照中获取值?
答案 0 :(得分:0)
这是从快照/参考中获取值的方法:
$firebase = (new Factory)
->withServiceAccount($serviceAccount)
->withDatabaseUri('https://mydomain.firebaseio.com/')
->create();
$db = $firebase->getDatabase();
$ref->getReference('cars')->orderByChild('brand')->equalTo('volvo')->limitToLast(10);
$values = $ref->getValue();
...