前置条件
在开始前,请作如下准备
1.学会用php输出“hello world”
2.去 聚合数据 申请证件识别专用的key
操作步骤
1.配置好php开发环境
2.在相应的本地网站根目录下新建一个文件夹并命名为:card
3.请准备一张jpg格式的身份证照片(本示例中的图片来自网络),并命名为1.jpg,放在card目录
4.请务必确保php对1.jpg有读权限(先用fopen(‘1.jpg’, ‘r’)测试一下)
5.在card目录新建一个index.php文件,并输入以下内容:
= 5.5.0)
* 示例中的身份证图片来自网络,用真实的身份证图片会有更佳的识别效果
*/header(content-type:text/html;charset=utf-8);$config = array( 'key' => '将我替换成您申请的key', 'url' => 'http://v.juhe.cn/certificates/query.php', //聚合数据证件识别接口的url地址
'cardtype' => '2', //证件的类型
'type' => 'image/jpg', //证件图片的类型);/*第一种方式*/$ch = curl_init($config['url']);$cfile = curl_file_create('1.jpg', $config['type'], '1.jpg');$data = array( 'cardtype' => $config['cardtype'], 'key' => $config['key'], 'pic' => $cfile,
);
curl_setopt($ch, curlopt_post,1);
curl_setopt($ch, curlopt_postfields, $data);
curl_exec($ch);
curl_close($ch);echo ;/*/第一种方式*//*第二种方式*/$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_exec($ch);
curl_close($ch);
}
6.打开浏览器,访问http://localhost/card/index.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
for php return @$filename;filename=
. ($postname ?: basename($filename))
. ($mimetype ? ;type=$mimetype : '');
}
}?>