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

16 lines
296 B
PHP
Raw Normal View History

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