PHP code example of cdcchen / dayu-client
1. Go to this page and download the library: Download cdcchen/dayu-client library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
cdcchen / dayu-client example snippets
$appKey = '22222237';
$secret = 'ed9cf1d59w32f2b90ab3453454ad2d';
$client = new \cdcchen\alidayu\Client($appKey, $secret);
$request = new \cdcchen\alidayu\SmsSendRequest();
$request->setSmsType('normal')
->setSmsFreeSignName('签名')
->setSmsTemplateCode('SMS_10545142')
->setSmsParams(['code' => '23543', 'product' => 'XXXXX'])
->setReceiveNumber('1895xxxx700')
->setExtend('123wehnergre');
use cdcchen\alidayu\ResponseException;
use Exception;
try {
$response = $client->execute($request);
$data = $response->getData();
} catch (ResponseException $e) {
echo $e->getMessage(), PHP_EOL;
echo $e->getCode(), PHP_EOL;
echo $e->getSubCode(), PHP_EOL;
echo $e->getSubMsg(), PHP_EOL;
} catch (Exception $e) {
echo $e->getMessage(), PHP_EOL;
echo $e->getCode(), PHP_EOL;
}
finally {
echo 'Send sms complete.', PHP_EOL;
}
$request = new \cdcchen\alidayu\SmsQueryRequest();
$request->setReceiveNumber('186xxxx7700')
->setBizId('101788701356^1102414566772')
->setQueryDate('20160614')
->setCurrentPage(1)
->setPageSize(1);
use cdcchen\alidayu\ResponseException;
use Exception;
try {
$response = $client->execute($request);
$data = $response->getData();
$items = $response->getItems();
} catch (ResponseException $e) {
echo $e->getMessage(), PHP_EOL;
echo $e->getCode(), PHP_EOL;
echo $e->getSubCode(), PHP_EOL;
echo $e->getSubMsg(), PHP_EOL;
} catch (Exception $e) {
echo $e->getMessage(), PHP_EOL;
echo $e->getCode(), PHP_EOL;
}
finally {
echo 'Send sms complete.', PHP_EOL;
}