<?php/** 说明:此类函数是基于优优云图片识别平台的API接口,调用类中的函数可以进行图片识别 类中的公有函数: setSoftInfo($softID,$softKey); //设置软件ID和KEY userLogin($userName,$passWord); //用户登录,登录成功返回用户的ID getPoint($userName,$passWord); //获取用户剩余题分 upload($imagePath,$codeType); //根据图片路径上传,返回验证码在服务器的ID,$codeType取值查看:http://www.uuwise.com/price.html getResult($codeID); //根据验证码ID获取识别结果 autoRecognition($imagePath,$codeType); //将upload和getResult放到一个函数来执行,返回验证码识别结果 reportError($codeID); //识别结果不正确报错误 regUser($userName,$userPassword) //注册新用户,注册成功返回新用户的ID pay($userName,$Card); //充值题分,充值成功返回用户当前题分 类中的公有变量: $macAddress='00e021ac7d'; //客户机的mac地址,服务器暂时没有用,后期准备用于绑定mac地址 赋值方法: $obj->macAddress='00e021ac7d'; $timeOut='60000'; //超时时间,建议不要改动此值 赋值方法: $obj->timeOut=60000; 函数调用方法: 需要先new一个对象 $obj=new uuApi; $obj->setSoftInfo('2097','b7ee76f547e34516bc30f6eb6c67c7db'); //如何获取这两个值?请查看这个页面:http://dll.uuwise.com/index.php?n=ApiDoc.GetSoftIDandKEY $obj->userLogin('userName','userPassword'); $result=autoRecognition($imagePath,$codeType); */class uuApi{ private $softID; private $softKEY; private $userName; private $userPassword; private $uid; private $userKey; private $softContentKEY; private $uuUrl; private $uhash; private $uuVersion='1.1.0.1'; private $userAgent; private $gkey; public $macAddress='00e021ac7d'; //客户机的mac地址,服务器暂时没有用,后期准备用于绑定mac地址 赋值方法: $obj->macAddress='00e021ac7d'; public $timeOut=60000; //超时时间,建议不要改动此值 赋值方法: $obj->timeOut=60000; public function setSoftInfo($id,$key) { if($id&&$key){ $this->softID=$id; $this->softKEY=$key; $this->uhash=md5($id.strtoupper($key)); return 'YES'; } return 'NO'; } private function getServerUrl($Server) { $url = "http://common.taskok.com:9000/Service/ServerConfig.aspx"; $result=$this->uuGetUrl($url,array(),$postData=false); preg_match_all("/\,(.*?)\:101\,(.*?)\:102\,(.*?)\:103/", $result, $match_index); $arr=array_filter($match_index); if(empty($arr)){return '-1001';} switch($Server) { case 'service': return 'http://'.$match_index[1][0]; break; case 'upload': return 'http://'.$match_index[2][0]; break; case 'code': return 'http://'.$match_index[3][0]; break; default: return 'parameter error'; } curl_close($this->uuUrl); } public function userLogin($userName,$passWord) { if(!($this->softID&&$this->softKEY)) { return 'sorry,SoftID or softKey is not set! Please use the setSoftInfo(id,key) function to set!'; } if(!($userName&&$passWord)){ return 'userName or passWord is empty!';} $this->userName=$userName; $this->userPassword=$passWord; $this->userAgent=md5(strtoupper($this->softKEY).strtoupper($this->userName)).$this->macAddress; $url = $this->getServerUrl('service').'/Upload/Login.aspx?U='.$this->userName.'&P='.md5($this->userPassword).'&R='.mktime(); $result=$this->uuGetUrl($url); if($result>0) { $this->userKey=$result; $this->uid=explode("_",$this->userKey); $this->uid=$this->uid[0]; $this->softContentKEY=md5(strtolower($this->userKey.$this->softID.$this->softKEY)); $this->gkey=md5(strtoupper($this->softKEY.$this->userName)).$this->macAddress; return $this->uid; } return $result; } public function getPoint($userName,$passWord) { if(!($userName&&$passWord)){ return 'userName or passWord is empty!';} $url = $this->getServerUrl('service').'/Upload/GetScore.aspx?U='.$userName.'&P='.md5($passWord).'&R='.mktime(); $result=$this->uuGetUrl($url); return $result; } public function upload($imagePath,$codeType,$auth=false) { if(!file_exists($imagePath)){return '-1003';} if(!is_numeric($codeType)){return '-3004';} $data=array( 'img'=>'@'.$imagePath, 'key'=>$this->userKey, 'sid'=>$this->softID, 'skey'=>$this->softContentKEY, 'TimeOut'=>$this->timeOut, 'Type'=>$codeType ); $ver=array( 'Version'=>'100', ); if($auth){$data=$data+$ver;} $url = $this->getServerUrl('upload').'/Upload/Processing.aspx?R='.mktime(); return $this->uuGetUrl($url,$data); } public function getResult($codeID) { if(!is_numeric($codeID)){return '-1009|The codeID is not number';} $url = $this->getServerUrl('code').'/Upload/GetResult.aspx?KEY='.$this->userKey.'&ID='.$codeID.'&Random='.mktime(); $result='-3'; $timer=0; while($result=='-3'&&($timer<$this->timeOut)) { $result=$this->uuGetUrl($url,false,false); usleep(100000); } curl_close($this->uuUrl); if($result=='-3') { return '-1002'; } return $result; } public function autoRecognition($imagePath,$codeType) { $result=$this->upload($imagePath,$codeType,$auth=true); if($result>0){ $arrayResult=explode("|",$result); if(!empty($arrayResult[1])){return $arrayResult[1];} return $this->getResult($result); } return $result; } private function uuGetUrl($url,$postData=false,$closeUrl=true) { $uid=isset($this->uid)?($this->uid):'100'; $default=array( 'Accept: text/html, application/xhtml+xml, */*', 'Accept-Language: zh-CN', 'Connection: Keep-Alive', 'Cache-Control: no-cache', 'SID:'.$this->softID, 'HASH:'.$this->uhash, 'UUVersion:'.$this->uuVersion, 'UID:'.$uid, 'User-Agent:'.$this->userAgent, 'KEY:'.$this->gkey, ); $this->uuUrl = curl_init(); curl_setopt($this->uuUrl, CURLOPT_HTTPHEADER, ($default)); curl_setopt($this->uuUrl, CURLOPT_HEADER, false); curl_setopt($this->uuUrl, CURLOPT_RETURNTRANSFER, true); curl_setopt($this->uuUrl, CURLOPT_FOLLOWLOCATION, true); curl_setopt($this->uuUrl, CURLOPT_VERBOSE, false); curl_setopt($this->uuUrl, CURLOPT_TIMEOUT, $this->timeOut); curl_setopt($this->uuUrl, CURLOPT_AUTOREFERER, true); curl_setopt($this->uuUrl, CURLOPT_RETURNTRANSFER, true); curl_setopt($this->uuUrl, CURLOPT_HTTPGET, true); curl_setopt($this->uuUrl, CURLOPT_URL,$url); if($postData) { curl_setopt($this->uuUrl, CURLOPT_POST, true); curl_setopt($this->uuUrl, CURLOPT_POSTFIELDS, $postData); } $info=curl_exec($this->uuUrl); if($closeUrl){ curl_close($this->uuUrl); } return trim($info); } public function reportError($codeID) { if(!is_numeric($codeID)){return '-1009|The codeID is not number';} if($this->softContentKEY&&$this->userKey) { $url = $this->getServerUrl('code').'/Upload/ReportError.aspx?key='.$this->userKey.'&ID='.$codeID.'&sid='.$this->softID.'&skey='.$this->softContentKEY.'&R='.mktime(); $result=$this->uuGetUrl($url); if($result=='OK') { return 'OK'; } return $result; } return '-1'; } public function regUser($userName,$userPassword) { if($this->softID&&$this->softKEY) { if($userName&&$userPassword) { $data=array( 'U'=>$userName, 'P'=>$userPassword, 'sid'=>$this->softID, 'UKEY'=>md5(strtoupper($userName).$userPassword.$this->softID.strtolower($this->softKEY)), ); $url=$this->getServerUrl('service').'/Service/Reg.aspx'; return $this->uuGetUrl($url,$data); } return 'userName or userPassword is empty!'; } return '-1'; } public function pay($userName,$Card) { if($this->softID&&$this->softKEY) { if($userName&&$Card) { $data=array( 'U'=>$userName, 'card'=>$Card, 'sid'=>$this->softID, 'pkey'=>md5(strtoupper($userName).$this->softID.$this->softKEY.strtoupper($Card)), ); $url=$this->getServerUrl('service').'/Service/Pay.aspx'; return $this->uuGetUrl($url,$data); } return 'userName or Card is empty!'; } return '-1'; }}?>
终于研究出来他们的API了,
现在识别基本是万能的,测试图片
回复讨论(解决方案)
广告贴?百度了一下这个公司,很明显是人工识别。
保留怀疑意见~~
请识别验证码图片:s+b=?
60秒时间,是不是太长了,而且这个在哪里可以用到呢?这个耗的资源更多
有一种职业,叫网络打字员
还是很有用处的
60秒时间,是不是太长了,而且这个在哪里可以用到呢?这个耗的资源更多
抢火车票,抢小米,各种啊

PHP와 Python은 각각 고유 한 장점이 있으며 선택은 프로젝트 요구 사항을 기반으로해야합니다. 1.PHP는 간단한 구문과 높은 실행 효율로 웹 개발에 적합합니다. 2. Python은 간결한 구문 및 풍부한 라이브러리를 갖춘 데이터 과학 및 기계 학습에 적합합니다.

PHP는 죽지 않고 끊임없이 적응하고 진화합니다. 1) PHP는 1994 년부터 새로운 기술 트렌드에 적응하기 위해 여러 버전 반복을 겪었습니다. 2) 현재 전자 상거래, 컨텐츠 관리 시스템 및 기타 분야에서 널리 사용됩니다. 3) PHP8은 성능과 현대화를 개선하기 위해 JIT 컴파일러 및 기타 기능을 소개합니다. 4) Opcache를 사용하고 PSR-12 표준을 따라 성능 및 코드 품질을 최적화하십시오.

PHP의 미래는 새로운 기술 트렌드에 적응하고 혁신적인 기능을 도입함으로써 달성 될 것입니다. 1) 클라우드 컴퓨팅, 컨테이너화 및 마이크로 서비스 아키텍처에 적응, Docker 및 Kubernetes 지원; 2) 성능 및 데이터 처리 효율을 향상시키기 위해 JIT 컴파일러 및 열거 유형을 도입합니다. 3) 지속적으로 성능을 최적화하고 모범 사례를 홍보합니다.

PHP에서, 특성은 방법 재사용이 필요하지만 상속에 적합하지 않은 상황에 적합합니다. 1) 특성은 클래스에서 다중 상속의 복잡성을 피할 수 있도록 수많은 방법을 허용합니다. 2) 특성을 사용할 때는 대안과 키워드를 통해 해결할 수있는 방법 충돌에주의를 기울여야합니다. 3) 성능을 최적화하고 코드 유지 보수성을 향상시키기 위해 특성을 과도하게 사용해야하며 단일 책임을 유지해야합니다.

의존성 주입 컨테이너 (DIC)는 PHP 프로젝트에 사용하기위한 객체 종속성을 관리하고 제공하는 도구입니다. DIC의 주요 이점에는 다음이 포함됩니다. 1. 디커플링, 구성 요소 독립적 인 코드는 유지 관리 및 테스트가 쉽습니다. 2. 유연성, 의존성을 교체 또는 수정하기 쉽습니다. 3. 테스트 가능성, 단위 테스트를 위해 모의 객체를 주입하기에 편리합니다.

SplfixedArray는 PHP의 고정 크기 배열로, 고성능 및 메모리 사용이 필요한 시나리오에 적합합니다. 1) 동적 조정으로 인한 오버 헤드를 피하기 위해 생성 할 때 크기를 지정해야합니다. 2) C 언어 배열을 기반으로 메모리 및 빠른 액세스 속도를 직접 작동합니다. 3) 대규모 데이터 처리 및 메모리에 민감한 환경에 적합하지만 크기가 고정되어 있으므로주의해서 사용해야합니다.

PHP는 $ \ _ 파일 변수를 통해 파일 업로드를 처리합니다. 보안을 보장하는 방법에는 다음이 포함됩니다. 1. 오류 확인 확인, 2. 파일 유형 및 크기 확인, 3 파일 덮어 쓰기 방지, 4. 파일을 영구 저장소 위치로 이동하십시오.

JavaScript에서는 NullCoalescingOperator (??) 및 NullCoalescingAssignmentOperator (?? =)를 사용할 수 있습니다. 1. 2. ??= 변수를 오른쪽 피연산자의 값에 할당하지만 변수가 무효 또는 정의되지 않은 경우에만. 이 연산자는 코드 로직을 단순화하고 가독성과 성능을 향상시킵니다.


핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

AI Hentai Generator
AI Hentai를 무료로 생성하십시오.

인기 기사

뜨거운 도구

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기

맨티스BT
Mantis는 제품 결함 추적을 돕기 위해 설계된 배포하기 쉬운 웹 기반 결함 추적 도구입니다. PHP, MySQL 및 웹 서버가 필요합니다. 데모 및 호스팅 서비스를 확인해 보세요.

ZendStudio 13.5.1 맥
강력한 PHP 통합 개발 환경

SublimeText3 중국어 버전
중국어 버전, 사용하기 매우 쉽습니다.

Atom Editor Mac 버전 다운로드
가장 인기 있는 오픈 소스 편집기

뜨거운 주제



