Captcha Interface

Describes Captcha interface.


verify

Simple captcha verification.

if($captcha->verify()){
    // User verified
}else{
    // Bot Detected
}

getReasonPhrase

Gets the response reason phrase associated with the verification status.

$reason_phrase = $captcha->getReasonPhrase();