MCBBSAutoSignIn/2captcha-php/examples/normal.php

16 lines
296 B
PHP
Raw Normal View History

2022-11-05 11:51:39 -04:00
<?php
set_time_limit(130);
require(__DIR__ . '/../src/autoloader.php');
$solver = new \TwoCaptcha\TwoCaptcha('YOUR_API_KEY');
try {
$result = $solver->normal(__DIR__ . '/images/normal.jpg');
} catch (\Exception $e) {
die($e->getMessage());
}
die('Captcha solved: ' . $result->code);