首页 验证码识别 验证码识别示例代码 识别验证码[PHP]

识别验证码示例代码[PHP]

作者: 阅读数:1745 上传时间:2016-03-10

识别验证码

<?php

require_once 'curl.func.php';

$appkey = 'your_appkey_here';//你的appkey
$pic = base64_encode(file_get_contents('11.jpg'));//验证码图片
$type = 'n4';//图片类型
$url = "https://api.jisuapi.com/captcha/recognize?appkey=$appkey";

$post = array(
    'pic'=>$pic,
    'type'=>$type
);
$result = curlOpen($url, array('post'=>$post));
$jsonarr = json_decode($result, true);

if($jsonarr['status'] != 0)
{
    echo $jsonarr['msg'];
    exit();
}

$result = $jsonarr['result'];
echo $result['type'].' '.$result['code'];