quiubas/quiubas-php

Quiubas PHP 库用于 REST API

该软件包的规范存储库似乎已丢失,因此该软件包已被冻结。

1.0.4 2016-04-23 02:21 UTC

This package is not auto-updated.

Last update: 2023-07-26 13:22:27 UTC


README

要求

  • PHP 5.3+
  • openssl 扩展
  • curl 扩展

当前版本 1.3.2

安装

通过下载源代码安装 quiubas-php

下载最新版本。然后,要使用库,请包含 quiubas.php 文件。

require_once '/path/to/quiubas-php/Quiubas.php';

快速入门

发送短信

<?php
// Install the library by downloading the .zip file to your project folder.
// Load the library
require_once '/path/to/quiubas-php/Quiubas.php';

\Quiubas\Quiubas::setAuth( 'api_key', 'api_private' );

$response = \Quiubas\Sms::send(array(
  'to_number' => '+52552512421',
  'message' => 'Hello there',
));

echo $response['id'];