|
| 1 | +# SMS Server-Side Library For PHP |
| 2 | + |
| 3 | +## Features |
| 4 | + |
| 5 | +- 签名管理 |
| 6 | + - [x] 创建签名: client->createSignature() |
| 7 | + - [x] 列出签名: client->checkSignature() |
| 8 | + - [x] 查询单个签名: client->checkSingleSignature() |
| 9 | + - [x] 编辑签名: client->updateSignature() |
| 10 | + - [x] 删除签名: client->deleteSignature() |
| 11 | + |
| 12 | +- 模板管理 |
| 13 | + - [x] 创建模板: client->createTemplate() |
| 14 | + - [x] 列出模板: client->queryTemplate() |
| 15 | + - [x] 查询单个模板: client->querySingleTemplate() |
| 16 | + - [x] 编辑模板: client->updateTemplate() |
| 17 | + - [x] 删除模板: client->deleteTemplate() |
| 18 | + |
| 19 | +- 发送短信 |
| 20 | + - [x] 发送短信: client->sendMessage() |
| 21 | + |
| 22 | +- 查询发送记录 |
| 23 | + - [x] 查询发送记录: client->querySendSms() |
| 24 | + |
| 25 | +## Demo |
| 26 | + |
| 27 | +- 签名管理 |
| 28 | + - [创建签名](https://github.com/qiniu/php-sdk/tree/master/examples/sms/sms_create_signature.php) |
| 29 | + - [列出签名](https://github.com/qiniu/php-sdk/tree/master/examples/sms/sms_query_signature.php) |
| 30 | + - [查询单个签名](https://github.com/qiniu/php-sdk/tree/master/examples/sms/sms_query_single_signature.php) |
| 31 | + - [编辑签名](https://github.com/qiniu/php-sdk/tree/master/examples/sms/sms_edit_signature.php) |
| 32 | + - [删除签名](https://github.com/qiniu/php-sdk/tree/master/examples/sms/sms_delete_signature.php) |
| 33 | + |
| 34 | +- 模板管理 |
| 35 | + - [创建模板](https://github.com/qiniu/php-sdk/tree/master/examples/sms/sms_create_template.php) |
| 36 | + - [列出模板](https://github.com/qiniu/php-sdk/tree/master/examples/sms/sms_query_template.php) |
| 37 | + - [查询单个模板](https://github.com/qiniu/php-sdk/tree/master/examples/sms/sms_query_single_template.php) |
| 38 | + - [编辑模板](https://github.com/qiniu/php-sdk/tree/master/examples/sms/sms_edit_template.php) |
| 39 | + - [删除模板](https://github.com/qiniu/php-sdk/tree/master/examples/sms/sms_delete_template.php) |
| 40 | + |
| 41 | +- 发送短信 |
| 42 | + - [发送短信](https://github.com/qiniu/php-sdk/tree/master/examples/sms/sms_send_message.php) |
| 43 | + |
| 44 | +- 查询发送记录 |
| 45 | + - [发送短信](https://github.com/qiniu/php-sdk/tree/master/examples/sms/sms_query_send_sms.php) |
0 commit comments