이 기사에서는 PHP를 통해 집계 데이터의 문서 인식 인터페이스를 호출하는 방법에 대해 설명합니다.
전제 조건
1 시작하기 전에 다음 사항을 준비하세요.
사용 방법 알아보기 it PHP는 "Hello World"를 출력합니다
데이터를 집계하고 문서 식별을 위한 특수 KEY를 적용하려면: https://www.juhe.cn/docs/api/id/153
작업 단계
PHP 개발 환경 구성
해당 로컬 웹사이트의 루트 디렉터리에 새 폴더를 만들고 이름을 카드
jpg로 된 신분증 사진을 준비하세요. 형식(이 예의 그림은 인터넷에서 가져온 것임)을 선택하고 이름을 1.jpg로 지정하고 카드 디렉토리에 넣습니다.
PHP에 1.jpg에 대한 읽기 권한이 있는지 확인하십시오(fopen(' 사용) 1.jpg', 'r') 먼저) 테스트)
카드 디렉터리에 새 index.php 파일을 만들고 다음 내용을 입력하세요.
PHP 코드
<?php /** * 证件识别接口示例 * 提供两种方式,请根据您的PHP版本、服务器环境等因素选择适合的方式 * 推荐使用第一种(PHP 5 >= 5.5.0) * 示例中的身份证图片来自网络,用真实的身份证图片会有更佳的识别效果 */ header("Content-type:text/html;charset=utf-8"); $config = array( 'key' => '将我替换成您申请的KEY', //聚合数据证件识别接口的URL地址 'url' => 'http://v.juhe.cn/certificates/query.php', //证件的类型,这里是身份证正面 'type' => 'image/jpg', //证件图片的类型 'cardType' => '2', ); /*第一种方式*/ $ch = curl_init($config['url']); //$filename <p> Path to the file which will be uploaded.</p> //$postname [optional] <p>Name of the file.</p> $cfile = curl_file_create('filename.jpg', $config['type'], 'postname.jpg'); $data = array( 'cardType' => $config['cardType'], 'key' => $config['key'], 'pic' => $cfile, ); curl_setopt($ch, CURLOPT_POST,1); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); //已经获取到内容,还没输出,如果不加下面这行,则不需要echo response //curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_exec($ch); curl_close($ch); /*/第一种方式*/ /*第二种方式*/ $data = array( 'cardType' => $config['cardType'], 'key' => $config['key'], 'pic' => "@1.jpg", ); post($config['url'], $data); /*/第二种方式*/ function post($url, $data) { $ch = curl_init(); curl_setopt( $ch , CURLOPT_POST , true ); @curl_setopt( $ch , CURLOPT_POSTFIELDS , $data); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $response = curl_exec($ch); curl_close($ch); echo $response; }
6. 브라우저를 열고 http: //localhost/card/index.php를 방문하면 일반적으로 다음과 유사한 콘텐츠가 표시됩니다.
Php 코드
{"error_code":"200","reason":"操作成功","result":{"住址":"XX省XX县XX村XX号","保留":"","公民身份号码":"420188195408288888","出生":"1954-08-28","头像":"","姓名":"XXX","性别":"女","民族":"汉族"}} {"error_code":"200","reason":"操作成功","result":{"住址":"XX省XX县XX村XX号","保留":"","公民身份号码":"420188195408288888","出生":"1954-08-28","头像":"","姓名":"XXX","性别":"女","民族":"汉族"}}
7. PHP 버전이 5.5 미만인 경우, 컬_파일_작성(curl_file_create)을 사용하려면 공식 문서(http://php.net/manual/en/function.curl-file-create)에서 제공하는 방법을 참조하세요. php
PHP 코드
For PHP < 5.5: <?php if (!function_exists('curl_file_create')) { function curl_file_create($filename, $mimetype = '', $postname = '') { return "@$filename;filename=" . ($postname ?: basename($filename)) . ($mimetype ? ";type=$mimetype" : ''); } } ?>