
PHP Captcha system (session based): configurable look and different validation modes.
Instantiation:
$captcha = new \GrindNous\Captcha\Captcha();
// Customize
$captcha = new \GrindNous\Captcha\Captcha(array(
'property' => 'value'
));
Accessing properties:
// Get property
$captcha->prop('property');
// Set property
$captcha->prop('property', 'value');
Show captcha:
// captcha-generator.php
$captcha->render();
// captcha-request-page.php
<img src="captcha-generator.php" />
// captcha-request-page.php
$encodedImage = $captcha->base64();
echo '<img src="'.$encodedImage.'" />';
Validation:
// verify-page.php
if(\GrindNous\Captcha\Captcha::valid( $userPostedData ))
// Valid
else
// Not valid
Specifying the captcha to validate:
// verify-page.php
if(\GrindNous\Captcha\Captcha::valid( $userPostedData, $captchaName ))
Default : 'default'
Options : string
Default : normal
Options : normal | ghost | strikethrough | notStrikethrough
Default : true
Options : bool
Default : 10
Options : int
Default : 600
Options : int
Default : 140
Options : int
Default : 60
Options : int
Default : 'png'
Options : 'jpeg' | 'gif' | 'png'
Default : '#fff'
Options : string | array
Default : '#333'
Options : string | array
Default : true
Options : bool
Default : '#333'
Options : string | array
Default : true
Options : bool
Default : '#333'
Options : string | array
Default : 2
Options : int
Default : true
Options : bool
Default : '#333'
Options : string | array
Default : 4
Options : int
Default : 'ttf_molten/molten.ttf'
Options : string
Default : 22
Options : int
Default : 0
Options : int
1 Each type of question will affect the valid response.
textColor
).ghostTextColor
).2 Hexadecimal color value, string of comma separated RGB values or indexed array with RGB values.
3 The font will be searched in the "fonts" folder starting from the location of the class file.
comments powered by Disqus