albumTable.php 加入checkreg和checklogin

在albumTable.php

加入

 public function checkReg($aii_username)
    {
        $aii_username  = $aii_username;
        $rowset = $this->select(array('aii_username' => $aii_username));
        $row = $rowset->current();
        if ($row) {
            throw new \Exception("this username already reg");
        }
        return true;
    } //检查该用户名是否被注册
    
     public function checkLogin(Album $album)
    {
        $aii_username  = $album->aii_username;
        $aii_password=$album->aii_password;
        $rowset = $this->select(array('aii_username' => $aii_username,'aii_password'=>$aii_password));
        $row = $rowset->current();
        if (!$row) {
            throw new \Exception("the username or password is wrong");
        }
        return true;
    } //验证登录

 

posted @ 2013-04-23 14:59  徐耀湘  阅读(207)  评论(0编辑  收藏  举报