当前位置: 首页 > 工具软件 > Captcha PHP > 使用案例 >

cls_captcha.php on line 119,captcha.php

石思淼
2023-12-01

/**

* 生成验证码

* ============================================================================

* *

*

* ----------------------------------------------------------------------------

*

*

* ============================================================================

* $Author: kingone $

* $Id: captcha.php 2016-11-25 08:01:11 kingone $

*/

define('IN_ECS', true);

define('INIT_NO_SMARTY', true);

require(dirname(__FILE__) . '/includes/init.php'); //产品体验认证

require(ROOT_PATH . 'includes/cls_captcha.php');

$img = new captcha(ROOT_PATH . 'data/captcha/', $_CFG['captcha_width'], $_CFG['captcha_height']);

@ob_end_clean(); //清除之前出现的多余输入

if (isset($_REQUEST['is_login']))

{

$img->session_word = 'captcha_login';

}elseif(isset($_REQUEST['is_discuss'])){ //ecmoban模板堂 --zhuo

$img->session_word = 'captcha_discuss';

}elseif(isset($_REQUEST['is_user_comment'])){

$img->session_word = 'is_user_comment';

}

$img->generate_image();

?>

一键复制

编辑

Web IDE

原始数据

按行查看

历史

 类似资料:

相关阅读

相关文章

相关问答