PHP code example of james-ban / qiyuesuo
1. Go to this page and download the library: Download james-ban/qiyuesuo 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/ */
james-ban / qiyuesuo example snippets
use qiyuesuo\common\SDKClient;
use qiyuesuo\service\impl\SealServiceImpl;
//印章接口测试
$sdk = new SDKClient("0VPomO22**", "nOcih5AtxnD6vCmYLWi42iz2VJM0**", "https://openapi.qiyuesuo.me");
$sealServiceImpl = new SealServiceImpl($sdk);
$result = $sealServiceImpl->findSeal('123456');
print_r($result);