mmkj / yibai
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 1
pkg:composer/mmkj/yibai
This package is not auto-updated.
Last update: 2025-12-25 14:13:48 UTC
README
- 调用方法
<?php require_once('YibaiSdk.php'); $client = new YibaiClient('https://xxxxxx/api', 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'); try { $response = $client->smsBatchSubmit(array( new SmsSubmit('186xxxxxxxx', '【亿佰云通讯】您的验证码是:111111'), new SmsSubmit('187xxxxxxxx', '【亿佰云通讯】您的验证码是:222222') )); print_r($response); } catch (YibaiApiException $e) { print_r('YibaiApiException, code: ' . $e->getCode() . ', message: '. $e->getMessage()); } catch (Exception $e) { print_r('Exception. message: ' . $e->getMessage()); }
注意事项
- 请使用php5.6或更高版本
- PhpSmsApiSample.php为非sdk调用示例,仅供测试,实际使用推荐sdk调用
- 详细api文档请参考https://www.100sms.cn/helpSupports