1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | <?php require_once 'curl.func.php' ; $appkey = 'your_appkey_here' ; //你的appkey $url = "https://api.jisuapi.com/businesslicenserecognition/recognize?appkey=$appkey" ; $post = [ 'pic' => base64_encode ( file_get_contents ( 'sfz1.jpg' )) ]; $result = curlOpen( $url , [ 'post' => $post , 'ssl' =>true]); $jsonarr = json_decode( $result , true); if ( $jsonarr [ 'status' ] != 0) { echo $jsonarr [ 'msg' ]; exit (); } $result = $jsonarr [ 'result' ]; echo $result [ 'name' ]. ' ' . $result [ 'creditno' ]. ' ' . $result [ 'legalperson' ]. ' ' . $result [ 'regcapital' ]. '<br>' ; echo $result [ 'regdate' ]. ' ' . $result [ 'enddate' ]. ' ' . $result [ 'regaddress' ]. ' ' . $result [ 'scope' ]. '<br>' ; echo $result [ 'regorgan' ]; |
© 2015-2025 杭州极速互联科技有限公司 版权所有 浙ICP备17047587号-4 浙公网安备33010502005096 增值电信业务经营许可证:浙B2-20190875