承接 textmagic/sdk 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

textmagic/sdk

Composer 安装命令:

composer require textmagic/sdk

包简介

A PHP wrapper for Textmagic API

README 文档

README

The TextMagic SMS API PHP wrapper can save you a lot of time, as it includes all the necessary API commands and tests. It only takes a few seconds to download it from GitHub and to install it into your own app or software. After installation, you’ll then be able to send text messages.

Code Example

$client = new TextmagicRestClient('<USERNAME>', '<APIV2_TOKEN>');
$result = ' ';
try {
    $result = $client->messages->create(
        array(
            'text' => 'Hello from TextMagic PHP',
            'phones' => implode(', ', array('99900000'))
        )
    );
}
catch (\Exception $e) {
    if ($e instanceof RestException) {
        print '[ERROR] ' . $e->getMessage() . "\n";
        foreach ($e->getErrors() as $key => $value) {
            print '[' . $key . '] ' . implode(',', $value) . "\n";
        }
    } else {
        print '[ERROR] ' . $e->getMessage() . "\n";
    }
    return;
}
echo $result['id'];

Installation Instructions

Quick Installation

Run the following command to install the TextMagic PHP wrapper using composer: a package management system used to install and manage software packages written in PHP:

composer require textmagic/sdk

Manual Installation

You can also install the TextMagic PHP wrapper from the GitHub repository using git. Run the following commands:

git clone git://github.com/textmagic/textmagic-rest-php.git
cd textmagic-rest-php

Requirements

The PHP wrapper has the following requirements:

  • PHP 5.2.1 or higher
  • phpunit 4.5 or higher

API Reference

License

The library is available as open source under the terms of the MIT License.

统计信息

  • 总下载量: 231.21k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 7
  • 点击次数: 1
  • 依赖项目数: 2
  • 推荐数: 0

GitHub 信息

  • Stars: 7
  • Watchers: 6
  • Forks: 10
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-08-30