'alidayu' => [
'appKey' => 'xxx',
'appSecret' => 'yyy',
],
/* @var \cdcchen\yii\alidayu\Client $client */
$client = Yii::$app->get('alidayu');
$response = $client->sendSms('手机号', '短信签名', '短信模板代码', '模板参数', '回传参数');
if ($response->isOK()) {
// success data
$data = $result->getData();
}
else {
// error data
$data = $result->getData();
}
手机号码 如果为多个,使用数组方式;
模板参数 具体根据模板要求;
回传参数 为可选参数,具体根据业务需求;
/* @var \cdcchen\yii\alidayu\Client $client */
$client = Yii::$app->get('alidayu');
$response = $client->querySms('186xxxxxxxx', '日期', '当前页码', '每页条数', '流水号');
if ($response->isOK()) {
// success data
$data = $result->getData();
}
else {
// error data
$data = $result->getData();
}
日期 格式:20160607;
当前页码 从·q1
开始;
每页条数 默认20