提交代码

This commit is contained in:
yunwuxin
2016-03-25 18:40:20 +08:00
parent 1b33da4021
commit 8d5786c593
21 changed files with 401 additions and 198 deletions

25
src/CaptchaController.php Normal file
View File

@@ -0,0 +1,25 @@
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2015 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: yunwuxin <448901948@qq.com>
// +----------------------------------------------------------------------
namespace think\captcha;
use think\Config;
use think\Controller;
class CaptchaController extends Controller
{
public function index($id = "")
{
$captcha = new Captcha((array)Config::get('captcha'));
$captcha->entry($id);
exit;
}
}