firebase-php
firebase-php copied to clipboard
Firebase Realtime Database PHP Wrapper
Results
3
firebase-php issues
Sort by
recently updated
recently updated
newest added
Hi thans for this project; I can installed and retrieve items from Database realtime ``` $firebase = new \Geckob\Firebase\Firebase(storage_path("file.json")); $firebase->setPath('items/'); $items= $firebase->get(''); $collection = collect(json_decode($items)); // printing like this element1...
Can you let me know how to get real-time data using this extension. If data is changed the automatically update the web field. Do you have any idea how to...