Firebase Cloud Firestore检索数据

时间:2018-02-20 08:27:34

标签: php firebase google-cloud-firestore

我一直在阅读PHP的Firestore文档,了解如何检索数据。我在此链接https://googlecloudplatform.github.io/google-cloud-php/#/docs/cloud-firestore/v0.3.2/firestore/query中看到一个,但我无法检索数据。有人有解决方案吗?

RewriteEngine on

RewriteCond %{HTTPS} !=on [OR]
RewriteCond %{HTTP_HOST} ^www\. [NC]
RewriteRule ^(.*)$ https://example.org%{REQUEST_URI} [R=301,L,NE]

1 个答案:

答案 0 :(得分:0)

$collectionReference = $firestore->collection('notifications');
    $query = $collectionReference->where('so_id', '=', $so_id);
    $snapshot = $query->documents();
    foreach ($snapshot as $value) {
        echo $value->get('name');
    }

您必须使用->get('fieldName')作为第一个值。如果该值具有嵌套值,则需要执行此操作。 ->get('fieldName')->nestedFieldName()