本文整理汇总了PHP中Captcha::draw_captcha方法的典型用法代码示例。如果您正苦于以下问题:PHP Captcha::draw_captcha方法的具体用法?PHP Captcha::draw_captcha怎么用?PHP Captcha::draw_captcha使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Captcha
的用法示例。
在下文中一共展示了Captcha::draw_captcha方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: generateCaptcha
public function generateCaptcha()
{
require_once '../core/Captcha.php';
$cap = new Captcha();
$src = $cap->draw_captcha();
$time = $cap->time;
print $time . '#' . $src;
}
示例2: show
public function show($id)
{
$this->view->title = 'Абітурієнт';
$captcha = new Captcha();
$this->view->src = $captcha->draw_captcha();
$this->view->time = $captcha->time;
$this->view->meta_k = '<META NAME="Keywords" CONTENT="Абітурієнти,компютерні системи та мережі, інженерія, ТНЕУ, КІТ, computer systems, networks">';
$this->view->meta_d = '<META NAME="Description" CONTENT="Кафедра КІ, компютерні системи та мережі, computer systems, networks">';
$this->view->css = array('menu');
$this->view->js = array('registration', 'guestbook/addEvent');
//$this->view->data = $this->model->getInfo($id);
$this->view->render('showAbiturient/show');
}
示例3: check
/**
* Перевірка введених даних
*/
public function check()
{
if (isset($_POST['captime'])) {
$error = $this->model->check($_POST);
if ($error != 0) {
$captcha = new Captcha();
$this->view->src = $captcha->draw_captcha();
$this->view->time = $captcha->time;
$this->view->error = $error;
$this->view->data = $_POST;
$this->view->title = 'Реєстрація';
$this->view->css = array('registration', 'sidebar', 'registration');
$this->view->js = array('registration', 'jquery-1.7.1.min', 'registration', 'sidebar_menu');
$this->view->render('registration/index');
}
} else {
header('Location: ' . URL . '?c=registration');
}
}