partikule / spothit-sms-api
Spothit 库
1.0.3
2019-06-11 21:22 UTC
Requires
- php: >=5.4
- ext-curl: *
- ext-json: *
This package is auto-updated.
Last update: 2024-09-12 09:08:30 UTC
README
Spot-hit SMS API PHP 客户端。
安装
推荐通过 composer 安装 Spot-hit SMS API PHP 客户端
$ composer require partikule/spothit-sms-api
用法
发送简单的短信
<?php $client = new Spothit\Api\Client('***API_KEY***'); $client->setSmsRecipients(['+336********']); $client->setSmsSender('AnySender'); $client->send('Yiiii - This is my first SMS');