-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcaptcha.php
31 lines (25 loc) · 1.04 KB
/
captcha.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
/**
* DouPHP
* --------------------------------------------------------------------------------------------------
* 版权所有 2013-2015 漳州豆壳网络科技有限公司,并保留所有权利。
* 网站地址: http://www.douco.com
* --------------------------------------------------------------------------------------------------
* 这不是一个自由软件!您只能在遵守授权协议前提下对程序代码进行修改和使用;不允许对程序代码以任何形式任何目的的再发布。
* 授权协议:http://www.douco.com/license.html
* --------------------------------------------------------------------------------------------------
* Author: DouCo
* Release Date: 2015-10-16
*/
define('IN_DOUCO', true);
define('EXIT_INIT', true);
require (dirname(__FILE__) . '/include/init.php');
require (ROOT_PATH . 'include/captcha.class.php');
// 开启SESSION
session_start();
// 实例化验证码
$captcha = new Captcha(70, 25);
// 清除之前出现的多余输入
@ob_end_clean();
$captcha->create_captcha();
?>