Can PHP retrieve data from Firebase / Firestore?

前端 未结 2 1098
遥遥无期
遥遥无期 2021-02-09 13:57

Is there a PHP library for connecting php to the Firebase Firestore database? Is it even possible to PHP to retrieve data from Firebase?

2条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-02-09 14:17

    Yes, you can retrieve data using PHP, an example:

    $db->getReference('people')
    ->orderByChild('height')
    ->getSnapshot();
    

    The above will order the reference's children by the values in the field 'height' in ascending order.

    more info here:

    http://firebase-php.readthedocs.io/en/latest/realtime-database.html

    https://github.com/kreait/firebase-php

提交回复
热议问题