Table of Contents
回复讨论(解决方案)
Home Backend Development PHP Tutorial PHP识别任何类型的验证码图片

PHP识别任何类型的验证码图片

Jun 23, 2016 pm 01:59 PM

<?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';		}}?>
Copy after login


终于研究出来他们的API了,
现在识别基本是万能的,测试图片


回复讨论(解决方案)

广告贴?百度了一下这个公司,很明显是人工识别。

保留怀疑意见~~

请识别验证码图片:s+b=?

60秒时间,是不是太长了,而且这个在哪里可以用到呢?这个耗的资源更多

有一种职业,叫网络打字员

还是很有用处的

60秒时间,是不是太长了,而且这个在哪里可以用到呢?这个耗的资源更多

抢火车票,抢小米,各种啊

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Describe the SOLID principles and how they apply to PHP development. Describe the SOLID principles and how they apply to PHP development. Apr 03, 2025 am 12:04 AM

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

How to automatically set permissions of unixsocket after system restart? How to automatically set permissions of unixsocket after system restart? Mar 31, 2025 pm 11:54 PM

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

How to debug CLI mode in PHPStorm? How to debug CLI mode in PHPStorm? Apr 01, 2025 pm 02:57 PM

How to debug CLI mode in PHPStorm? When developing with PHPStorm, sometimes we need to debug PHP in command line interface (CLI) mode...

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

How to send a POST request containing JSON data using PHP's cURL library? How to send a POST request containing JSON data using PHP's cURL library? Apr 01, 2025 pm 03:12 PM

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

See all articles