<?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']; 

© 2015-2025 杭州极速互联科技有限公司 版权所有 浙ICP备17047587号-4 浙公网安备33010502005096 增值电信业务经营许可证:浙B2-20190875