1
0
mirror of https://e.coding.net/circlecloud/MinecraftAccount.git synced 2024-11-17 00:58:55 +00:00
MinecraftAccount/Application/Home/Controller/CommonController.class.php
502647092 9dfe8fa4a7 更新项目 完成登陆注册部分...
Signed-off-by: 502647092 <jtb1@163.com>
2015-11-06 18:12:15 +08:00

25 lines
462 B
PHP

<?php
namespace Home\Controller;
use Think\Controller;
class CommonController extends Controller {
public function Header() {
$this->test = 'Header';
$this->display ();
}
public function Master() {
$this->test = 'Master';
$this->display ();
}
public function Banner() {
$this->test = 'Banner';
$this->display ();
}
public function Verify() {
ob_clean ();
$Verify = new \Think\Verify ();
$Verify->entry ();
}
}