1 | <?php |
||
19 | class IdCard extends Api |
||
20 | { |
||
21 | private $address = 'http://apis.baidu.com/apistore/idservice/id?'; |
||
22 | |||
23 | /** |
||
24 | * 获取身份证信息. |
||
25 | * |
||
26 | * @param string $id 身份证号 |
||
27 | * |
||
28 | * @return array |
||
29 | */ |
||
30 | public function get($id) |
||
34 | |||
35 | /** |
||
36 | * @inheritdoc |
||
37 | */ |
||
38 | protected function _parseResponse($result) |
||
56 | } |
||
57 |