nasrul21 / php-fcm-client
PHP的Firebase Cloud Messaging (FCM)客户端
v0.1.1
2020-12-02 21:06 UTC
Requires
- php: >= 7.0
This package is auto-updated.
Last update: 2024-09-29 05:43:01 UTC
README
一个简单的PHP库,用于发送FCM(Firebase云消息)
需求
PHP
>= 7.0- 使用
Composer
作为包管理器
安装
composer require nasrul21/php-fcm-client
快速入门
<?php // load composer require 'vendor/autoload.php'; // set api key $apiKey = "..." // your fcm api key // initialize FCMClient with apiKey as params $fcm = new FCMClient($apiKey); $registration_ids = ["...", "..."]; $title = "Hello!"; $body = "This is the body"; // send fcm notifications $fcm->send($registration_ids, $title, $body);