enricodias/smsdev
Composer 安装命令:
composer require enricodias/smsdev
包简介
Send and receive SMS using SmsDev.com.br
README 文档
README
Send and receive SMS using SmsDev.com.br
Installation
Require this package with Composer in the root directory of your project.
composer require enricodias/smsdev
Usage
Create a new instance with your API key:
$SmsDev = new \enricodias\SmsDev('API_KEY');
If the API key is not provided, the library will look for the environment variable
SMSDEV_API_KEY
Set any date format to be used in all date methods:
$SmsDev->setDateFormat('Y-m-d H:i:s'); // default is 'U', timestamp
Sending an SMS message
$SmsDev->send(5511988881111, 'SMS Message'); // returns true if the API accepts the message var_dump($SmsDev->getResult()); // Returns the raw API response.
The country code optional. The default is 55 (Brazil).
Phone number validation
If you have the package giggsey/libphonenumber-for-php installed, it will be used to validate numbers locally. You can disable this feature with the method setNumberValidation before sending:
$SmsDev->setNumberValidation(false); // disables phone number validation
Note that SmsDev will charge you for messages sent to invalid numbers.
Receiving SMS messages
Get unread messages in a specific date interval:
$SmsDev->setDateFormat('Y-m-d'); $SmsDev->setFilter() ->isUnread() ->dateBetween('2018-01-19', '2019-01-19') ->fetch();
Search for a specific message id:
$SmsDev->setFilter() ->byId(2515974) ->fetch();
Parsing the response
After fetching the messages you can either access the raw API response using getResult() or use the function parsedMessages() to get a simplified array:
$SmsDev->setDateFormat('U'); // timestamp $messages = $SmsDev->parsedMessages(); var_dump($messages); /* array(1) { ['date'] => '1529418914' ['number'] => '5511988887777' ['message'] => 'Message' } */
Dates are converted to the format specified in setDateFormat().
Date filters
The following filters are equivalent:
$SmsDev->setFilter() ->dateBetween('2018-01-19', '2019-01-19') ->fetch(); $SmsDev->setFilter() ->dateBetween('2018-01-19', '') ->dateTo('2019-01-19') ->fetch(); $SmsDev->setFilter() ->dateBetween('', '2019-01-19') ->dateFrom('2018-01-19') ->fetch(); $SmsDev->setFilter() ->dateFrom('2018-01-19') ->dateTo('2019-01-19') ->fetch();
Timezone problems
The API uses the timezone America/Sao_Paulo. Using another timezone in your application will force you to convert dates locally in order to get correct values.
Ex: if you are using UTC-4 and receive a new message, it will look like the message came from the future because America/Sao_Paulo is UTC-3.
This class solves this problem by automatically correcting dates both in search filters and in parsed messages. Only the dates in raw API responses are not converted.
TODO
- Check the status of sent messages.
- Send multiple SMS messages.
enricodias/smsdev 适用场景与选型建议
enricodias/smsdev 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 11.6k 次下载、GitHub Stars 达 21, 最近一次更新时间为 2020 年 01 月 13 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「sms」 「smsdev」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 enricodias/smsdev 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 enricodias/smsdev 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 enricodias/smsdev 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
SDK for payment gateway PlatbaMobilom.sk for PHP7.0
Extensible library for building notifications and sending them via different delivery channels.
yii2-sms expand
Send and receive SMS using SmsDev.com.br
A fork of simplesoftwareio/simple-sms with Verimor driver.
Aakash Sms Provider Api Wrapper
统计信息
- 总下载量: 11.6k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 21
- 点击次数: 10
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-01-13