diff --git a/app/index/controller/Jump.php b/app/index/controller/Jump.php index ad95c67..43bec75 100644 --- a/app/index/controller/Jump.php +++ b/app/index/controller/Jump.php @@ -16,14 +16,10 @@ class Jump extends BaseController public function index() { $u = Request::param(); - var_dump($u); //查询用户 $user = Db::name('user')->whereOr('name',$u['name'])->whereOr('nickname',$u['name'])->find(); $id = $user['id']; return redirect('/index/u/'.$id.'.html'); - //halt($u); - - //return view(); }