Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/codewithsushil/firebase-php-client
Firebase Realtime Database for PHP client.
https://github.com/codewithsushil/firebase-php-client
firebase firebase-client firebase-database firebase-php
Last synced: 8 days ago
JSON representation
Firebase Realtime Database for PHP client.
- Host: GitHub
- URL: https://github.com/codewithsushil/firebase-php-client
- Owner: CodeWithSushil
- License: mpl-2.0
- Created: 2023-03-16T01:50:34.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-09-15T13:41:17.000Z (2 months ago)
- Last Synced: 2024-09-16T14:04:14.680Z (2 months ago)
- Topics: firebase, firebase-client, firebase-database, firebase-php
- Language: PHP
- Homepage:
- Size: 13.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Firebase-Client
Firebase Client for PHP.
Create your PHP project with firebase's Realtime Database.### Example
```php
retrieve("users");// Post data
$data = ['name' => 'John doe', 'age' => 28];
$client->insert("users", $data);// Update data
$data = ['name' => 'Natasha', 'age' => 21];
$client->insert("users", $data, $id);// Delete data
$client->update("users", $id);
```