當前位置: 首頁>>代碼示例>>PHP>>正文


PHP captcha::createCaptcha方法代碼示例

本文整理匯總了PHP中captcha::createCaptcha方法的典型用法代碼示例。如果您正苦於以下問題:PHP captcha::createCaptcha方法的具體用法?PHP captcha::createCaptcha怎麽用?PHP captcha::createCaptcha使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在captcha的用法示例。


在下文中一共展示了captcha::createCaptcha方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: createCaptcha

    public function createCaptcha()
    {
        $captcha = '';
        $symbol = '0';
        $width = 420;
        $height = 70;
        $font = 'fonts/bellb.ttf';
        $fontsize = 20;
        $captchaLength = rand(1, 1);
        $im = imagecreatetruecolor($width, $height);
        $bg = imagecolorallocatealpha($im, 0, 0, 0, 127);
        imagefill($im, 0, 0, $bg);
        for ($i = 0; $i < $captchaLength; $i++) {
            $captcha .= $symbol[rand(0, strlen($symbol) - 1)];
            $x = ($width - 20) / $captchaLength * $i + 10;
            $x = rand($x, $x + 4);
            $y = $height - ($height - $fontsize) / 2;
            $curcolor = imagecolorallocate($im, rand(0, 100), rand(0, 100), rand(0, 100));
            $angle = rand(-25, 25);
            imagettftext($im, $fontsize, $angle, $x, $y, $curcolor, $font, $captcha[$i]);
        }
        session_start();
        $_SESSION['captcha'] = $captcha;
        header('Content-type: image/png');
        imagepng($im);
        imagedestroy($im);
    }
}
$obj = new captcha();
$obj->createCaptcha();
開發者ID:Arxemond777,項目名稱:News,代碼行數:30,代碼來源:captcha.php

示例2: captcha

<?php

ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(-1);
define("captchaCode", "");
include 'captcha.class.php';
if (isset($_GET['aux'])) {
    $aux = $_GET['aux'];
} else {
    $aux = "0";
}
if (isset($_GET['input_captcha'])) {
    $input_captcha = $_GET['input_captcha'];
} else {
    $input_captcha = "0";
}
if ($aux == 'createCaptcha') {
    $captcha = new captcha("fonts/");
    $htmlCaptcha = $captcha->createCaptcha();
    echo $htmlCaptcha;
} else {
    if ($aux == 'validateCaptcha') {
        if ($input_captcha != "0") {
            $captcha = new captcha();
            $validCaptcha = $captcha->validateCaptcha($input_captcha);
            echo $validCaptcha;
        }
    }
}
開發者ID:goncalogoncalves,項目名稱:simple-captcha,代碼行數:30,代碼來源:captchaBridge.php


注:本文中的captcha::createCaptcha方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。