定制 maatify/whysms 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

maatify/whysms

最新稳定版本:5.0.1

Composer 安装命令:

composer require maatify/whysms

包简介

PHP library for WhySms API handler, known by our team

README 文档

README

Current version Packagist PHP Version Support Monthly Downloads Total Downloads Stars

Installation

composer require maatify/whysms

Usage

Instance

use Maatify\WhySms\WhySms;

require_once __DIR__ . '/vendor/autoload.php';

$why_sms = new WhySms(__API_TOKEN__, __SENDER_ID__); // WhySms instance

Check Balance

$result = $why_sms->->CheckBalance();

print_r($result);

Response Example :

Success Example
  Array
  (
      [success] => 1
      [remaining_unit] => 7
      [expired_on] => 1st Jun 33, 7:16 PM
  )
Error Example
  Array
  (
      [success] =>
      [error] => (err-Maatify\WhySms\Request::Curl) cURL Error (22): The requested URL returned error: 401 Unauthorized
  )

Send SMS Message

$result = $why_sms->SendSms(__PHONE_NUMBER__, __SMS_MESSAGE__);

print_r($result);

Response Example :

Success Example
  Array
  (
      [success] => 1
      [details] => Your message was successfully delivered
      [uid] => 64c7392312ecb
      [to] => __PHONE_NUMBER__
      [from] => __SMS_MESSAGE__
      [message] => Welcome to first test from why sms
      [status] => Delivered
      [cost] => 1
  )
Error Example
  Array
  (
      [success] =>
      [error] => (err-Maatify\WhySms\Request::Curl) cURL Error (22): The requested URL returned error: 404 Not Found
  )

统计信息

  • 总下载量: 81
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: proprietary
  • 更新时间: 2023-07-30