Ratings | | Unique User Downloads | | Download Rankings |
Not enough user ratings | | Total: 388 | | All time: 6,598 This week: 124 |
|
Description | | Author |
This package can decode form values with CAPTCHA images using the anti-CAPTCHA API.
It can take an image and send HTTP request to the Anti-CAPTCHA Web service API, so it can return the text that may be in an image decoded by a human solver of that service.
The package also supports using the Anti-CAPTCHA to workaround submitting forms using Google Recaptcha. Innovation Award
June 2017
Winner
Prize: One big elePHPant Plush Mascott |
Anti-CAPTCHA is a service that allows providing solutions for CAPTCHA challenges that appear on Web pages to verify if the user accessing the current page is really human.
This package can use the Anti-CAPTCHA service by solve CAPTCHA challenges of many types.
Manuel Lemos |
| |
|
|
Innovation award
Nominee: 2x
Winner: 1x |
|
Details
How to install this package?
You can install this package via composer
:
composer require kield-01/anticaptcha-composer
Important Notes
For now, this package is on testing
Example
<?php
namespace AntiCaptcha;
use AntiCaptcha\ImageToText;
$_img_to_text = new ImageToText();
$_img_to_text->setKey('anticaptcha_key');
$_img_to_text->setFile(WWW_ROOT . 'capcha.jpg');
$_task = 0;
$_result = 0;
while (!$_img_to_text->createTask()) {
$_img_to_text->createTask();
}
$_task = $_img_to_text->getTaskId();
while (!$_img_to_text->waitForResult()) {
$_img_to_text->waitForResult();
}
$_result = $_img_to_text->getTaskSolution();
dump("TaskID : {$_task} : {$_result}");
|
Applications that use this package |
|
No pages of applications that use this class were specified.
If you know an application of this package, send a message to the author to add a link here.