hobrt/hbsms
Composer 安装命令:
composer require hobrt/hbsms
包简介
This is a simple library to interact with hbsms.com api and send sms .
README 文档
README
This is a simple library to interact with hbsms.com api and send sms .
composer require hobrt/hbsms:dev-master
<?php
require __DIR__."/vendor/autoload.php";
use hobrt\Hbsms;
$sms = new Hbsms("Your token");
$phone_number = "0678173186";
$message = "test first message ... ";
$device_id = 1;
$response = $sms->newSms($message, $phone_number, $device_id);
print_r(json_decode($response->getBody()));
统计信息
- 总下载量: 23
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-01-10